DomMatrix([DomMatrixReadOnly other])

Source

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