removeAllDigits method
Removes all numerical digits (0-9) from the string.
@returns A new string with all digits removed.
Example:
final mixed = 'Address line 123 Street 4';
print(mixed.removeAllDigits()); // "Address line Street "
Implementation
String removeAllDigits() => replaceAll(RegExp(r'\d'), '');