characterAt method

int characterAt(
  1. int position
)

Returns an Unicode character at the specified position.

Example: text.characterAt(0);

Implementation

int characterAt(int position) {
  return _characters[position];
}