charAt method

String charAt(
  1. int idx
)

Similar to java charAt(idx)

Implementation

String charAt(int idx) => substring(idx, idx + 1);