Crop constructor

const Crop({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. double? minimumScale,
  4. bool startCollapsed = false,
  5. double? aspectRatio,
  6. double maximumScale = 2.0,
  7. bool alwaysShowGrid = false,
  8. ImageErrorListener? onImageError,
})

Implementation

const Crop({
  Key? key,
  required this.image,
  this.minimumScale,
  this.startCollapsed = false,
  this.aspectRatio,
  this.maximumScale = 2.0,
  this.alwaysShowGrid = false,
  this.onImageError,
}) : super(key: key);