hasLowercase static method
Implementation
static Validator<String> hasLowercase({String? error}) => (value, context) {
if (context.resources.lowercaseLetterPattern.hasMatch(value)) {
return (true, null);
}
return (false, error ?? context.errors.passwordErrors.hasLowercase());
};