maxCrop property

Offset get maxCrop

The maxCrop param is the Rect.bottomRight 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 maxCrop => _maxCrop;
set maxCrop (Offset value)

Implementation

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