readUint32 method

int readUint32()

Fetch a uint32 from the bytes list

Implementation

int readUint32() {
  final start = ip;
  ip += 4;
  return bytes.buffer.asByteData().getUint32(start);
}