DOMRectInit constructor

DOMRectInit({
  1. num? height,
  2. num? width,
  3. num? x,
  4. num? y,
})

Implementation

factory DOMRectInit({
  _i2.num? height,
  _i2.num? width,
  _i2.num? x,
  _i2.num? y,
}) =>
    DOMRectInit._(
      height: height,
      width: width,
      x: x,
      y: y,
    );