PasswordStrength constructor

const PasswordStrength({
  1. required bool hasMinLength,
  2. required bool hasUppercase,
  3. required bool hasLowercase,
  4. required bool hasDigit,
  5. required bool hasSpecial,
})

Constructs a PasswordStrength instance.

Implementation

const PasswordStrength({
  required this.hasMinLength,
  required this.hasUppercase,
  required this.hasLowercase,
  required this.hasDigit,
  required this.hasSpecial,
});