removeCharAt method

String removeCharAt(
  1. int charIndex
)

Implementation

String removeCharAt(final int charIndex) {
  final List<String> charList = split('').toList();
  charList.removeAt(charIndex);
  return charList.join();
}