isValidPassword method
Implementation
bool isValidPassword({
int minLength = 6,
int maxLength = 20,
RegExp? pattern,
}) {
return Validator.isValidPassword(
this,
maxLength: maxLength,
minLength: minLength,
pattern: pattern,
);
}