CropTransform constructor

const CropTransform({
  1. Key? key,
  2. required double ratio,
  3. required double scale,
  4. required Rect view,
  5. required Size childSize,
  6. required Rect getRect(
    1. Size size
    ),
  7. required Widget child,
  8. Size? layoutSize,
})

Implementation

const CropTransform({
  super.key,
  required this.ratio,
  required this.scale,
  required this.view,
  required this.childSize,
  required this.getRect,
  required this.child,
  this.layoutSize,
});