add method Null safety
- T data
override
Adds data
to the sink.
Must not be called after a call to close.
Implementation
@override
void add(T data) {
_sink.add(data);
}
Adds data
to the sink.
Must not be called after a call to close.
@override
void add(T data) {
_sink.add(data);
}