get method

int get()

Implementation

int get() {
  if (_position >= _limit) throw RangeError("buffer underflow at $_position (limit $_limit)");
  return _bytes[_position++];
}