peekUint8 method

int peekUint8()

Implementation

int peekUint8() {
  if (remaining < 1) {
    throw StateError('EOF');
  }
  return _data[_off];
}