readUint32 method

int readUint32()

Implementation

int readUint32() {
  var v = _byteData!.getUint32(offset);
  offset += 4;
  return v;
}