PasswordField constructor
const
PasswordField({
- String labelText = 'Password',
- required TextEditingController controller,
- bool isLoading = false,
- Key? key,
Creates a PasswordField.
controller is required. labelText defaults to 'Password'.
Implementation
const PasswordField({
this.labelText = 'Password',
required this.controller,
this.isLoading = false,
super.key,
});