hardSet method
void
hardSet(
- T newValue
Updates the value and notifies listeners unconditionally.
Implementation
void hardSet(T newValue) {
silentSet(newValue);
notify();
}
Updates the value and notifies listeners unconditionally.
void hardSet(T newValue) {
silentSet(newValue);
notify();
}