ImageCropView constructor

const ImageCropView({
  1. Key? key,
  2. required Image image,
  3. required CropController controller,
  4. required Rect cropRect,
  5. OverlayShape overlayShape = OverlayShape.rectangle,
  6. Color backgroundColor = Colors.black,
})

Implementation

const ImageCropView({
  super.key,
  required this.image,
  required this.controller,
  required this.cropRect,
  this.overlayShape = OverlayShape.rectangle,
  this.backgroundColor = Colors.black,
});