setCharAt method

void setCharAt(
  1. int index,
  2. dynamic char
)

Implementation

void setCharAt(int index, dynamic char) {
  replace(index, index + 1, char);
}