add method
void
add(
- T? newValue
Implementation
void add(T? newValue) {
this._currentValue = newValue;
if (!_isClosing) {
_controller.add(newValue);
}
}
void add(T? newValue) {
this._currentValue = newValue;
if (!_isClosing) {
_controller.add(newValue);
}
}