update method
Updates the value and notifies listeners if changed
Implementation
@override
void update(T newValue) {
super.update(newValue);
if (_touched) {
validate();
}
}
Updates the value and notifies listeners if changed
@override
void update(T newValue) {
super.update(newValue);
if (_touched) {
validate();
}
}