DomMatrix([DomMatrixReadOnly other ])

Source

@DomName('DOMMatrix.DOMMatrix')
@DocsEditable()
factory DomMatrix([DomMatrixReadOnly other]) {
  if (other == null) {
    return _blink.BlinkDOMMatrix.instance.constructorCallback_0_();
  }
  if ((other is DomMatrixReadOnly)) {
    return _blink.BlinkDOMMatrix.instance.constructorCallback_1_(other);
  }
  throw new ArgumentError("Incorrect number or type of arguments");
}