inputChange method

void inputChange(
  1. dynamic newValue,
  2. dynamic valid,
  3. dynamic validationMessage
)

Implementation

void inputChange(newValue, valid, validationMessage) {
  _validate(valid, validationMessage);
  _pristine = false;
  inputText = newValue;
  _changeController.add(newValue);
  updateBottomPanelState();
}