PasswordTextfield constructor
const
PasswordTextfield({
- Key? key,
- String label = "",
- required TextEditingController passwordController,
- required FocusNode passwordFocus,
- required bool isPasswordFieldValidated,
- required dynamic onChanged(),
- required String? validator()?,
- String? errorLabel,
- dynamic onSubmitted()?,
- List<
String> autofillHints = const [AutofillHints.password],
Implementation
const PasswordTextfield({
Key? key,
this.label = "",
required this.passwordController,
required this.passwordFocus,
required this.isPasswordFieldValidated,
required this.onChanged,
required this.validator,
this.errorLabel,
this.onSubmitted,
this.autofillHints = const [AutofillHints.password],
}) : super(key: key);