Returns the character at the given index.
index
String operator [](int index) { if (index < 0 || index >= length) { throw RangeError.index(index, this); } return _string[_start + index]; }