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