PasswordValidationResult constructor

const PasswordValidationResult({
  1. required bool hasMinLength,
  2. required bool hasUppercase,
  3. required bool hasLowercase,
  4. required bool hasDigit,
  5. required bool hasSpecialChar,
  6. required bool hasNoBannedWords,
})

Implementation

const PasswordValidationResult({
  required this.hasMinLength,
  required this.hasUppercase,
  required this.hasLowercase,
  required this.hasDigit,
  required this.hasSpecialChar,
  required this.hasNoBannedWords,
});