readInt64Le method

int readInt64Le()

Reads a little-endian i64 from the current offset without allocating.

Implementation

int readInt64Le() {
  final value = _byteData.getInt64(_offset, binaryProtocolLittleEndian);
  _offset += 8;
  return value;
}