getUint8 method

dynamic getUint8()

Implementation

getUint8() {
  var value = this.dv.buffer.asByteData().getUint8(this.offset);
  this.offset += 1;
  return value;
}