CropperSize constructor

const CropperSize({
  1. int? width,
  2. int? height,
})

Implementation

const CropperSize({
  this.width,
  this.height,
});