putUint8List method Null safety
- Uint8List list
Write all the values from a Uint8List into the buffer.
Implementation
void putUint8List(Uint8List list) {
assert(!_isDone);
_append(list);
}
Write all the values from a Uint8List into the buffer.
void putUint8List(Uint8List list) {
assert(!_isDone);
_append(list);
}