CropView constructor

const CropView({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. required Rect initialCropArea,
  4. double? aspectRatio,
  5. ValueChanged<Rect>? onAreaChanged,
})

Implementation

const CropView({
  super.key,
  required this.image,
  required this.initialCropArea,
  this.aspectRatio,
  this.onAreaChanged,
});