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