PasswordStrength constructor
const
PasswordStrength({})
Constructs a PasswordStrength instance.
Implementation
const PasswordStrength({
required this.hasMinLength,
required this.hasUppercase,
required this.hasLowercase,
required this.hasDigit,
required this.hasSpecial,
});