CropTheImage constructor

CropTheImage({
  1. Key? key,
  2. required Uint8List inputImageData,
  3. required double? aspectRatio,
})

Implementation

CropTheImage({
  Key? key,
  required this.inputImageData,
  required this.aspectRatio,
}) : super(key: key);