withoutDigits method

String withoutDigits()

Removes all digit characters.

Implementation

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