isValidPassword method

bool isValidPassword({
  1. int minLength = 6,
  2. int maxLength = 20,
  3. RegExp? pattern,
})

Implementation

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