Cropper constructor

const Cropper({
  1. Key? key,
  2. required Image image,
  3. Widget? overlayWidget,
  4. required BoxFit fit,
  5. required Size exportSize,
  6. Color? exportBackgroundColor,
  7. required ClipShape clipShape,
  8. required bool clipImage,
  9. required Radius clipRRectRadius,
})

Implementation

const Cropper({
  Key? key,
  required this.image,
  this.overlayWidget,
  required this.fit,
  required this.exportSize,
  this.exportBackgroundColor,
  required this.clipShape,
  required this.clipImage,
  required this.clipRRectRadius,
}) : super(key: key);