charAt method
Returns the character at the specified index
in a string.
print('This'.charAt(0)); // 'T'
print('This'.charAt(3)); // 's'
Throws an RangeError if index
is negative or greater than String's length.
Implementation
String charAt(int index) => iterable.elementAt(index);