set method
void
set(
- T next
Replaces the current value and notifies every listener.
Implementation
void set(T next) {
_value = next;
notifyListeners();
}
Replaces the current value and notifies every listener.
void set(T next) {
_value = next;
notifyListeners();
}