ScreenshotClip constructor

ScreenshotClip({
  1. num? scale,
  2. required num width,
  3. required num height,
  4. required num x,
  5. required num y,
})

Implementation

ScreenshotClip({
  this.scale,
  required this.width,
  required this.height,
  required this.x,
  required this.y,
});