readUint8 method

int readUint8()

Implementation

int readUint8() {
  var v = _byteData!.getUint8(offset);
  offset++;
  return v;
}