PasswordTextFormField constructor

PasswordTextFormField({
  1. Key? key,
  2. required TextEditingController controller,
  3. InputDecoration? decoration,
  4. AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction,
  5. bool obscureText = true,
  6. String obscuringCharacter = "*",
  7. TextStyle? style,
  8. TextInputType? keyboardType = TextInputType.text,
  9. bool showValidationRow = true,
  10. bool overrideValidationRow = false,
  11. Function? customValidationSection,
  12. bool debugPrintLoud = false,
  13. Color textColor = Colors.white,
  14. FontWeight textFontWeight = FontWeight.normal,
  15. double textFontSize = 15,
})

Implementation

PasswordTextFormField({
  Key? key,
  required this.controller,
  this.decoration,
  this.autovalidateMode = AutovalidateMode.onUserInteraction,
  this.obscureText = true,
  this.obscuringCharacter = "*",
  this.style,
  this.keyboardType = TextInputType.text,
  this.showValidationRow = true,
  this.overrideValidationRow = false,
  this.customValidationSection,
  this.debugPrintLoud = false,
  this.textColor = Colors.white,
  this.textFontWeight = FontWeight.normal,
  this.textFontSize = 15,
}) : super(key: key);