peekNext method

String? peekNext()

Implementation

String? peekNext() {
  return (current + 1 >= source.length) ? null : source[current + 1];
}