readInt8 method

int readInt8()

Implementation

int readInt8() {
  final v = _bytes[_pos];
  _pos += 1;
  return v;
}