NicePasswordStrength constructor

const NicePasswordStrength({
  1. Key? key,
  2. required String password,
  3. bool showLabel = true,
  4. bool showRequirements = true,
  5. int minLength = 8,
})

Implementation

const NicePasswordStrength({
  super.key,
  required this.password,
  this.showLabel = true,
  this.showRequirements = true,
  this.minLength = 8,
});