readByte method

int readByte()

Implementation

int readByte() {
  var d = _data[offset];
  offset++;
  return d;
}