CropImageDialogPage constructor

const CropImageDialogPage(
  1. {required File imageFile,
  2. required dynamic onCrop(
    1. File
    ),
  3. Key? key}
)

Create an instance of this page.

Implementation

const CropImageDialogPage({
  required this.imageFile,
  required this.onCrop,
  super.key,
});