withoutNumbers static method

String? withoutNumbers(
  1. String? text, {
  2. TextValidateResponse? textResponse,
})

Validate WithoutNumbers

Implementation

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