charAt method

String charAt(
  1. int idx
)

Implementation

String charAt(int idx) {
  _initBuffer();
  return _buffer![idx];
}