updateState method
void
updateState(
- T newValue
Implementation
void updateState(T newValue) {
if (!_state.isClosed) {
_state.add(newValue);
}
}
void updateState(T newValue) {
if (!_state.isClosed) {
_state.add(newValue);
}
}