CropImage constructor

const CropImage({
  1. Key? key,
  2. String? imageUrl,
  3. Uint8List? imageBytes,
  4. double aspectRatio = 1.0,
  5. bool isCircle = false,
  6. CropController? controller,
})

Implementation

const CropImage({
  super.key,
  this.imageUrl,
  this.imageBytes,
  this.aspectRatio = 1.0,
  this.isCircle = false,
  this.controller,
});