readUint8 method

int readUint8()

Implementation

int readUint8() {
  final v = readBytes(1)[0];
  print("[DEBUG] readUint8 -> $v");
  return v;
}