updateValue method

void updateValue(
  1. covariant Object? value
)

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);
}