peekChar method

String? peekChar()

Implementation

String? peekChar() {
  return index < source.length ? source[index] : null;
}