updateSilently method

  1. @protected
void updateSilently(
  1. T newState
)
inherited

updateSilently Updates the value silently without notifying listeners.

Implementation

@protected
void updateSilently(T newState) {
  _data = newState;
}