maxValue property

int maxValue

The maximum value of the range. The participant can not proceed if the number is outside the range.

Implementation

int get maxValue => _maxValue;
void maxValue= (int maxValue)

Implementation

set maxValue(int maxValue) {
  this._maxValue = maxValue;
}