CropperImage constructor

CropperImage(
  1. ImageProvider<Object> image, {
  2. Key? key,
  3. CropperController? controller,
  4. bool limitations = true,
  5. bool isArc = false,
  6. double backBoxSize = 10.0,
  7. Color backBoxColor0 = Colors.grey,
  8. Color backBoxColor1 = Colors.white,
  9. Color maskColor = _defualtMaskColor,
  10. Color lineColor = Colors.white,
  11. double lineWidth = 3,
  12. double outWidth = 256.0,
  13. double outHeight = 256.0,
  14. double maskPadding = 20.0,
  15. double round = 8.0,
})

Implementation

CropperImage(
  this.image, {
  Key? key,
  this.controller,
  this.limitations = true,
  this.isArc = false,
  this.backBoxSize = 10.0,
  this.backBoxColor0 = Colors.grey,
  this.backBoxColor1 = Colors.white,
  this.maskColor = _defualtMaskColor,
  this.lineColor = Colors.white,
  this.lineWidth = 3,
  this.outWidth = 256.0,
  this.outHeight = 256.0,
  this.maskPadding = 20.0,
  this.round = 8.0,
}) : super(key: key);