add method

void add(
  1. List<int> chunk
)

Implementation

void add(List<int> chunk) {
  _buffer.addAll(chunk.asBytes);
}