CropImagePage constructor

const CropImagePage({
  1. Key? key,
  2. required String sourceName,
  3. double cropAspectRatio = 1.0,
  4. required Uint8List source,
})

Implementation

const CropImagePage(
    {Key? key,
    required this.sourceName,
    this.cropAspectRatio = 1.0,
    required this.source})
    : super(key: key);