update method
void
update(
- covariant void fnUpdate(
- T value
override
Executes fnUpdate
, and notify the listeners about to update.
Implementation
void update(void fnUpdate(T value)) {
super.update(() => fnUpdate(value));
}