CropTransformWithAnimation constructor

const CropTransformWithAnimation({
  1. Key? key,
  2. required TransformData transform,
  3. required Widget child,
  4. bool shouldAnimate = true,
})

Implementation

const CropTransformWithAnimation({
  super.key,
  required this.transform,
  required this.child,
  this.shouldAnimate = true,
});