packUint64 method

void packUint64(
  1. Int64 v
)

Implementation

void packUint64(Int64 v) {
  if (_buf.length - _offset < 9) _nextBuf();
  v.toUnsigned(64);
  _dat.setUint64(_offset, v.toInt(), Endian.little);
  _offset += 8;
}