parseAt method

(Json, int) parseAt(
  1. int i
)
inherited

Implementation

(Json, int) parseAt(int i) {
  try {
    return _parseTop(i);
    // ignore: avoid_catching_errors
  } on RangeError {
    throw IncompleteParseException('exhausted input');
  }
}