maxValue property

String? get maxValue

The maximum value of the node.

Used in conjunction with value to define the current value and range of a node. A typical usage is for progress indicators, where value represents the current progress and maxValue defines the maximum possible value.

Implementation

String? get maxValue => _maxValue;
set maxValue (String? value)

Implementation

set maxValue(String? value) {
  _maxValue = value;
  _hasBeenAnnotated = true;
}