PolicyPasswordStrength constructor

PolicyPasswordStrength({
  1. required String $id,
  2. required int min,
  3. required bool uppercase,
  4. required bool lowercase,
  5. required bool number,
  6. required bool symbols,
})

Implementation

PolicyPasswordStrength({
  required this.$id,
  required this.min,
  required this.uppercase,
  required this.lowercase,
  required this.number,
  required this.symbols,
});