preMultiplySelf method

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

Implementation

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