updateValue method
Sets the value of the field and notifies the form's widgets that the value has changed.
Implementation
void updateValue(covariant Object? value) {
_value = parser(value);
_streamController.add(_value);
}
Sets the value of the field and notifies the form's widgets that the value has changed.
void updateValue(covariant Object? value) {
_value = parser(value);
_streamController.add(_value);
}