isStrongPassword method

bool isStrongPassword({
  1. int minLength = 8,
  2. int minLowercase = 1,
  3. int minUppercase = 1,
  4. int minNumbers = 1,
  5. int minSymbols = 1,
})

Checks if the string is a strong password.

Implementation

bool isStrongPassword({
  int minLength = 8,
  int minLowercase = 1,
  int minUppercase = 1,
  int minNumbers = 1,
  int minSymbols = 1,
}) {
  return _isStrongPassword(
    this,
    minLength,
    minLowercase,
    minUppercase,
    minNumbers,
    minSymbols,
  );
}