fromMatrix method

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

Implementation

@DomName('DOMMatrix.fromMatrix')
@DocsEditable()
@Experimental() // untriaged
static DomMatrix fromMatrix([Map other]) {
  if (other != null) {
    var other_1 = convertDartToNative_Dictionary(other);
    return _fromMatrix_1(other_1);
  }
  return _fromMatrix_2();
}