MaskCoords constructor

const MaskCoords({
  1. required int n,
  2. required double x,
  3. required double y,
  4. required double zoom,
})

Mask Coords constructor.

Implementation

const MaskCoords({
  required this.n,
  required this.x,
  required this.y,
  required this.zoom,
}) : super._();