didChange method

  1. @mustCallSuper
void didChange(
  1. String newValue
)
inherited

Implementation

@mustCallSuper
void didChange(T newValue) {
  if (!isValueEquals(_status.value, newValue)) {
    setState(() {
      _hasInteractedByUser = true;
      _status = _status._copyWith(value: FormeOptional(newValue));
    });
    _fieldChange();
  }
}