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