CropUI constructor

const CropUI({
  1. Key? key,
  2. required String imagePath,
  3. CropOptions? initialCropOptions,
  4. required dynamic onCropChanged(
    1. CropRect? cropRect
    ),
  5. VoidCallback? onConfirm,
  6. VoidCallback? onCancel,
})

Implementation

const CropUI({
  super.key,
  required this.imagePath,
  this.initialCropOptions,
  required this.onCropChanged,
  this.onConfirm,
  this.onCancel,
});