PasswordInput constructor
const
PasswordInput({
- Key? key,
- String? labelText,
- bool isRequired = false,
- bool enabled = true,
- FocusNode? focusNode,
- TextEditingController? controller,
- ValueChanged<
String> ? onChanged, - Validator? validator,
- ValueChanged<
String> ? onEnter, - EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(8.0, 8.0, 8.0, 4.0),
Implementation
const PasswordInput({
super.key,
this.labelText,
this.isRequired = false,
this.enabled = true,
this.focusNode,
this.controller,
this.onChanged,
this.validator,
this.onEnter,
this.padding = const EdgeInsets.fromLTRB(8.0, 8.0, 8.0, 4.0),
});