silentUpdateCurrent method
void
silentUpdateCurrent(
- T current(
- T cValue
Updates the current value without notifying listeners.
This is a convenience method equivalent to calling updateCurrent with doNotifyListeners set to false.
Still respects the _forceUpdate flag.
Implementation
void silentUpdateCurrent(T Function(T cValue) current) =>
updateCurrent(current, doNotifyListeners: false);