DomMatrixReadOnly constructor Null safety

DomMatrixReadOnly(
  1. [Object? init]
)

Implementation

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