charAt method

String charAt(
  1. int index
)

Get a character from a specific index

Implementation

String charAt(int index) => this[index];