nextChar method
Implementation
String? nextChar() {
final String? res = index < source.length ? source[index] : null;
index++;
return res;
}
String? nextChar() {
final String? res = index < source.length ? source[index] : null;
index++;
return res;
}