onValueChanged method
Implementation
@override
void onValueChanged(value, {bool initial = false, oldValue}) {
super.onValueChanged(value, initial: initial, oldValue: oldValue);
if (!initial) {
_triggerValidationWithDebounce(value);
}
}
@override
void onValueChanged(value, {bool initial = false, oldValue}) {
super.onValueChanged(value, initial: initial, oldValue: oldValue);
if (!initial) {
_triggerValidationWithDebounce(value);
}
}