CropHandles constructor

const CropHandles({
  1. Key? key,
  2. required Rect cropRect,
  3. double? aspectRatio,
  4. bool lockAspectRatio = false,
  5. required dynamic onCropChanged(
    1. Rect
    ),
  6. required Size imageDisplaySize,
  7. required Offset imageOffset,
})

Implementation

const CropHandles({
  super.key,
  required this.cropRect,
  this.aspectRatio,
  this.lockAspectRatio = false,
  required this.onCropChanged,
  required this.imageDisplaySize,
  required this.imageOffset,
});