read32 method

int read32()

Read U32 value from the buffer and shift cursor by 4.

Implementation

int read32() {
  final value = _dataView.getUint32(_bytePosition, Endian.little);
  shift(4);
  return value;
}