minValue property

String? get minValue

The minimum 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 minValue defines the minimum possible value.

Implementation

String? get minValue => _minValue;
set minValue (String? value)

Implementation

set minValue(String? value) {
  _minValue = value;
  _hasBeenAnnotated = true;
}