maxValue property

dynamic maxValue

The range domain's maximum value.

For fields that utilize a range domain, the field type must match the type of the min and max values.

Implementation

dynamic get maxValue => _maxValue.value;
void maxValue=(dynamic value)

Implementation

set maxValue(dynamic value) => _maxValue.value = value;