PassWordValidationTextFiled constructor

const PassWordValidationTextFiled({
  1. Key? key,
  2. TextInputAction? textInputAction,
  3. required int passwordMinLength,
  4. required bool lineIndicator,
  5. required int passwordMaxLength,
  6. String? passwordLowercaseError,
  7. Color? lineIndicatorBackgroundColor,
  8. TextStyle? style,
  9. String? passwordMinError,
  10. String? passwordMaxError,
  11. int? maxLength,
  12. String? passWordDigitsCaseError,
  13. EdgeInsets? scrollPadding,
  14. String? obscuringCharacter,
  15. String? passWordSpecialCharacters,
  16. Function? onSaved,
  17. bool? expands,
  18. bool? obscureText,
  19. bool? enableSuggestions,
  20. Function? onTap,
  21. String? hasPasswordEmpty,
  22. String? passWordUpperCaseError,
  23. double? cursorHeight,
  24. Radius? cursorRadius,
  25. double? cursorWidth,
  26. Color? cursorColor,
  27. Brightness? keyboardAppearance,
  28. bool? readOnly,
  29. Function? onChanged,
  30. bool? showCursor,
  31. bool? autoCorrect,
  32. TextInputType? keyboardType,
  33. InputDecoration? decoration,
  34. TextEditingController? passTextEditingController,
  35. String? validatorMassage,
})

Implementation

const PassWordValidationTextFiled(
    {Key? key,
    this.textInputAction,
    required this.passwordMinLength,
    required this.lineIndicator,
    required this.passwordMaxLength,
    this.passwordLowercaseError,
    this.lineIndicatorBackgroundColor,
    this.style,
    this.passwordMinError,
    this.passwordMaxError,
    this.maxLength,
    this.passWordDigitsCaseError,
    this.scrollPadding,
    this.obscuringCharacter,
    this.passWordSpecialCharacters,
    this.onSaved,
    this.expands,
    this.obscureText,
    this.enableSuggestions,
    this.onTap,
    this.hasPasswordEmpty,
    this.passWordUpperCaseError,
    this.cursorHeight,
    this.cursorRadius,
    this.cursorWidth,
    this.cursorColor,
    this.keyboardAppearance,
    this.readOnly,
    this.onChanged,
    this.showCursor,
    this.autoCorrect,
    this.keyboardType,
    this.decoration,
    this.passTextEditingController,
    this.validatorMassage})
    : super(key: key);