withoutNumbers static method
Validate WithoutNumbers
Implementation
static String? withoutNumbers(String? text,
{TextValidateResponse? textResponse}) {
return _validateInput(
text, RegularExpression.validateWithoutNumbers, textResponse, 'Text');
}