minCrop property

Offset get minCrop

The minCrop param is the Rect.topLeft position of the crop area

The minimum value of this param is 0.0 The maximum value of this param is 1.0

Implementation

Offset get minCrop => _minCrop;
set minCrop (Offset value)

Implementation

set minCrop(Offset value) {
  if (value >= _min && value <= _max) {
    _minCrop = value;
    notifyListeners();
  }
}