hasDigit static method

bool hasDigit(
  1. String input
)

Implementation

static bool hasDigit(String input) {
  if (input.isEmpty) return false;
  return RegExp(CONTAIN_DIGIT_REGEX).hasMatch(input);
}