Crop constructor
const
Crop({})
Implementation
const Crop({
Key? key,
required this.child,
required this.size,
this.aspectRatio,
this.maximumScale = 2.0,
this.alwaysShowGrid = false,
this.disableResize = false,
this.backgroundColor = _kCropBackgroundColor,
this.initialParam,
}) : assert(size != Size.zero, 'Size cannot be zero.'),
assert(size != Size.infinite, 'Size cannot be infinite.'),
super(key: key);