updateSilently method

void updateSilently(
  1. T newState
)
inherited

updateSilently Updates the value silently without notifying listeners.

Implementation

void updateSilently(T newState) {
  _notifier = newState;
}