hardSet method

void hardSet(
  1. T newValue
)

Updates the value and notifies listeners unconditionally.

Implementation

void hardSet(T newValue) {
  silentSet(newValue);
  notify();
}