removeDigits method

String removeDigits()

Removes all digits from the string.

Implementation

String removeDigits() => replaceAll(RegExp(r'\d'), '');