maxTrim property

double get maxTrim

The maxTrim param is the maximum position of the trimmed area on the slider

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

Implementation

double get maxTrim => _maxTrim;
set maxTrim (double value)

Implementation

set maxTrim(double value) {
  if (value >= _min.dx && value <= _max.dx) {
    _maxTrim = value;
    _updateTrimRange();
  }
}