readInt64Le method
Reads a little-endian i64 from the current offset without allocating.
Implementation
int readInt64Le() {
final value = _byteData.getInt64(_offset, binaryProtocolLittleEndian);
_offset += 8;
return value;
}
Reads a little-endian i64 from the current offset without allocating.
int readInt64Le() {
final value = _byteData.getInt64(_offset, binaryProtocolLittleEndian);
_offset += 8;
return value;
}