writeByteList method

void writeByteList(
  1. Int8List v
)
inherited

Implementation

void writeByteList(Int8List v) {
  writeSize(v.length);
  final b = commit(v.length);
  _copy(b, ByteData.view(v.buffer));
}