NormalCropPage constructor

const NormalCropPage({
  1. Key? key,
  2. required File imageFile,
  3. String cancelText = "Cancel",
  4. String doneText = "Done",
})

Implementation

const NormalCropPage({
  super.key,
  required this.imageFile,
  this.cancelText = "Cancel",
  this.doneText = "Done",
});