getUint32 method

dynamic getUint32()

Implementation

getUint32() {
  var value = this
      .dv
      .buffer
      .asByteData()
      .getUint32(this.offset, this.littleEndian ? Endian.little : Endian.big);
  this.offset += 4;
  return value;
}