silentUpdate method

void silentUpdate(
  1. 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);