removeDigits property
String
get
removeDigits
Removes all digits from the string.
Implementation
String get removeDigits => replaceAll(RegExp(r'\d+'), '');
Removes all digits from the string.
String get removeDigits => replaceAll(RegExp(r'\d+'), '');