getInt32 method

int getInt32 ()

Reads an Int32 from the buffer.

Implementation

int getInt32() {
  final int value = data.getInt32(_position, Endian.host);
  _position += 4;
  return value;
}