removeCharAt method

String removeCharAt(
  1. int charIndex
)

Implementation

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