onValueChanged method

  1. @override
void onValueChanged(
  1. T? value, {
  2. bool initial = false,
  3. T? oldValue,
})
override

Implementation

@override
void onValueChanged(value, {bool initial = false, oldValue}) {
  super.onValueChanged(value, initial: initial, oldValue: oldValue);

  if (!initial) {
    _triggerValidationWithDebounce(value);
  }
}