DomMatrix 构造函数

DomMatrix([
  1. Object? init
])

实现

factory DomMatrix([Object? init]) {
  if (init != null) {
    return DomMatrix._create_1(init);
  }
  return DomMatrix._create_2();
}