onValueChanged method

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

Implementation

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

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