silentSet method

void silentSet(
  1. T newValue
)

Updates the value without notifying listeners.

Implementation

void silentSet(T newValue) {
  _value = newValue;
}