update method
void
update(
- T updater(
- T oldValue
Implementation
void update(T Function(T oldValue) updater) {
_value = updater(_value);
this._markNeedsBuild();
}
void update(T Function(T oldValue) updater) {
_value = updater(_value);
this._markNeedsBuild();
}