CroppingButton constructor

const CroppingButton({
  1. required dynamic onImageDoneListener(
    1. dynamic
    ),
  2. required Uint8List imageBytes,
  3. required BuildContext context,
  4. required ImageProcess imageProcess,
  5. dynamic state,
  6. double? headerMenuSize,
  7. Color? colorForWhiteSpace,
  8. double? squareCircleSize,
  9. dynamic imageLoadingStarted()?,
  10. dynamic imageLoadingFinished()?,
  11. Key? key,
  12. required OutputImageFormat outputImageFormat,
})

Implementation

const CroppingButton({
  required this.onImageDoneListener,
  required this.imageBytes,
  required this.context,
  required this.imageProcess,
  this.state,
  this.headerMenuSize,
  this.colorForWhiteSpace,
  this.squareCircleSize,
  this.imageLoadingStarted,
  this.imageLoadingFinished,
  Key? key,
  required this.outputImageFormat,
}) : super(key: key);