readInt32Le method

int readInt32Le()

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

Implementation

int readInt32Le() {
  final value = _byteData.getInt32(_offset, binaryProtocolLittleEndian);
  _offset += 4;
  return value;
}