ImageCropPage constructor

const ImageCropPage({
  1. Key? key,
  2. required String imagePath,
  3. required CropOverlayShape cropShape,
  4. required dynamic onCropCompleted(
    1. String? croppedPath
    ),
})

Implementation

const ImageCropPage({
  super.key,
  required this.imagePath,
  required this.cropShape,
  required this.onCropCompleted,
});