readByte method

int readByte()

Implementation

int readByte() {
  final value = _byteBuffer[_position];
  _position++;
  return value;
}