readUInt32 method

int readUInt32()

Reads a uint32 from the backing buffer

Implementation

int readUInt32() {
  final res = _data.getUint32(_offset);
  _offset += uint32Size;
  return res;
}