multiplySelf method

  1. @DomName('DOMMatrix.multiplySelf')
  2. @DocsEditable()
  3. @Experimental()
DomMatrix multiplySelf ([Map other ])

Implementation

@DomName('DOMMatrix.multiplySelf')
@DocsEditable()
@Experimental() // untriaged
DomMatrix multiplySelf([Map other]) {
  if (other != null) {
    var other_1 = convertDartToNative_Dictionary(other);
    return _multiplySelf_1(other_1);
  }
  return _multiplySelf_2();
}