putUint8List method

void putUint8List (Uint8List list)

Write all the values from a Uint8List into the buffer.

Implementation

void putUint8List(Uint8List list) {
  _buffer.addAll(list);
}