emit method
void
emit(
- T newValue
Notifies listeners with newValue, unconditionally.
Implementation
void emit(T newValue) {
_eventArgs = newValue;
notifyListeners();
}
Notifies listeners with newValue, unconditionally.
void emit(T newValue) {
_eventArgs = newValue;
notifyListeners();
}