hasNext method

bool hasNext()

Returns true if there is still an object to parse. Otherwise false.

Implementation

bool hasNext() {
  return _position < bytes!.length;
}