minValue property

dynamic minValue

The range domain's minimum value.

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

Implementation

dynamic get minValue => _minValue.value;
void minValue=(dynamic value)

Implementation

set minValue(dynamic value) => _minValue.value = value;