CropConfig constructor
const
CropConfig({})
Implementation
const CropConfig({
this.minAspectRatio,
this.maxAspectRatio,
this.shortest,
this.longest,
this.smallest,
this.largest,
this.initialRect,
this.borderRadius,
this.overdragMax = 3.0,
}) : assert(
minAspectRatio == null ||
maxAspectRatio == null ||
maxAspectRatio >= minAspectRatio,
'maxAspectRatio must be >= minAspectRatio',
);