addBytes method

void addBytes(
  1. Uint8List x
)

Implementation

void addBytes(Uint8List x) {
  buffer.setRange(offset, offset + x.length, x);
  offset += x.length;
}