AuthPassField constructor

AuthPassField({
  1. required String name,
  2. TextEditingController? textEditingController,
  3. Widget? title,
  4. List<String? Function(dynamic)> validators = const [],
  5. dynamic value = '',
  6. TextStyle? textStyle,
  7. dynamic onChange(
    1. String value
    )?,
  8. double? iconSize,
  9. InputDecoration? textFieldDecoration,
  10. EdgeInsets padding = const EdgeInsets.all(8.0),
})

Constructs an AuthPassField object.

name specifies the name of the field.

textEditingController controller for the password input (optional).

title specifies the title widget of the field (optional).

validators defines a list of validation functions for the field (optional).

value specifies the initial value of the field (default is an empty string).

textStyle defines the text style for the password input.

onChange is a callback function triggered when the value of the field changes.

iconSize specifies the size of the icon displayed with the password input (optional).

textFieldDecoration defines the decoration for the password input field (optional).

padding defines the padding around the password input field (default is EdgeInsets.all(8.0)).

Implementation

AuthPassField({
  required super.name,
  TextEditingController? textEditingController,
  super.title,
  super.validators = const [],
  super.value = '',
  this.textStyle,
  this.onChange,
  this.iconSize,
  this.textFieldDecoration,
  this.padding = const EdgeInsets.all(8.0),
});