add method
Adds a data event
to the sink.
Must not be called on a closed sink.
Implementation
@override
void add(T event) {
_currentValue.setValue(event);
_controller.add(event);
}
Adds a data event
to the sink.
Must not be called on a closed sink.
@override
void add(T event) {
_currentValue.setValue(event);
_controller.add(event);
}