CropUI constructor
const
CropUI({
- Key? key,
- required String imagePath,
- CropOptions? initialCropOptions,
- required dynamic onCropChanged(
- CropRect? cropRect
- VoidCallback? onConfirm,
- VoidCallback? onCancel,
Implementation
const CropUI({
super.key,
required this.imagePath,
this.initialCropOptions,
required this.onCropChanged,
this.onConfirm,
this.onCancel,
});