ByteSink constructor

ByteSink()

Implementation

ByteSink() {
  _controller.stream.listen((event) {
    _list.addAll(event);
  });
}