ElevarmPasswordStrength constructor

const ElevarmPasswordStrength({
  1. required String password,
  2. required List<ElevarmPasswordStrengthValidation> validations,
  3. String title = 'Password harus mengandung:',
  4. IconData iconAssetName = ElevarmIconsOutline.check,
  5. String passwordStrengthLabelBuilder(
    1. double strengthProgress
    )?,
  6. Key? key,
})

Implementation

const ElevarmPasswordStrength({
  required this.password,
  required this.validations,
  this.title = 'Password harus mengandung:',
  this.iconAssetName = ElevarmIconsOutline.check,
  this.passwordStrengthLabelBuilder,
  super.key,
});