DOMMatrix2DInitValue constructor

DOMMatrix2DInitValue({
  1. double? a,
  2. double? b,
  3. double? c,
  4. double? d,
  5. double? e,
  6. double? f,
  7. double? m11,
  8. double? m12,
  9. double? m21,
  10. double? m22,
  11. double? m41,
  12. double? m42,
})

Implementation

DOMMatrix2DInitValue({
  this.a,
  this.b,
  this.c,
  this.d,
  this.e,
  this.f,
  this.m11,
  this.m12,
  this.m21,
  this.m22,
  this.m41,
  this.m42,
});