ImageCropScreen constructor

const ImageCropScreen({
  1. Key? key,
  2. required String path,
  3. dynamic onCropped(
    1. Uint8List
    )?,
  4. String titleText = "裁剪图像",
  5. String cropText = "裁剪",
})

Implementation

const ImageCropScreen(
    {Key? key,
    required this.path,
    this.onCropped,
    this.titleText = "裁剪图像",
    this.cropText = "裁剪"})
    : super(key: key);