putInt64List method
- Int64List list
Write all the values from an Int64List into the buffer.
Implementation
void putInt64List(Int64List list) {
  assert(!_isDone);
  _alignTo(8);
  _append(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length));
}