readInt32 method

int readInt32()

Implementation

int readInt32() {
  final v = _data.getInt32(_pos, Endian.little);
  _pos += 4;
  return v;
}