readInt32 method

int readInt32()

Implementation

int readInt32() {
  _reserveBytes(4);
  _offset += 4;
  return _byteData.getInt32(_offset - 4);
}