ImgCrop constructor

const ImgCrop({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. double maximumScale = 2.0,
  4. ImageErrorListener? onImageError,
  5. double chipRadius = 150,
  6. ChipShape chipShape = ChipShape.circle,
  7. Color? stokenColor = Colors.white,
  8. double? stokenWidth = 2,
})

Implementation

const ImgCrop({
  Key? key,
  required this.image,
  this.maximumScale = 2.0,
  this.onImageError,
  this.chipRadius = 150,
  this.chipShape = ChipShape.circle,
  this.stokenColor = Colors.white,
  this.stokenWidth = 2,
}) : super(key: key);