add method

  1. @override
void add(
  1. List<int> data
)
override

Adds data to the sink.

Must not be called after a call to close.

Implementation

@override
void add(List<int> data) {
  assert(_lastClose == null);
  _dest.add(data);
}