CropImage constructor

CropImage({
  1. required Uint8List mainImage,
  2. String? text,
  3. void onChanged(
    1. Uint8List image
    )?,
  4. String saveText = "Save",
  5. String resetText = "Reset",
  6. String previewText = "Preview",
  7. String title = "Crop image as 1/1 ratio",
})

Implementation

CropImage(
    {required this.mainImage,
    this.text,
    this.onChanged,
    this.saveText = "Save",
    this.resetText = "Reset",
    this.previewText = "Preview",
    this.title = "Crop image as 1/1 ratio"});