CropRect constructor

CropRect({
  1. int? height,
  2. int? width,
  3. int? x,
  4. int? y,
})

Implementation

CropRect({
    this.height,
    this.width,
    this.x,
    this.y,
});