add method

void add(
  1. List<int> buffer
)

Implementation

void add(List<int> buffer) {
  sink.add(buffer);
  written += buffer.length;
}