value property
T?
get
value
The current value of the field.
Implementation
T? get value => _value;
The current value of the field.
Implementation
set value(covariant Object? value) {
_value = parser(value);
onChanged?.call(_value);
}