AuthDropdownField constructor

AuthDropdownField({
  1. required String name,
  2. required List<String> items,
  3. required dynamic onChanged(
    1. String?
    ),
  4. InputDecoration? dropdownDecoration,
  5. EdgeInsets padding = const EdgeInsets.all(8.0),
  6. TextStyle? textStyle,
  7. Icon icon = const Icon(Icons.keyboard_arrow_down),
  8. required dynamic value,
})

Constructs an AuthDropdownField object.

Implementation

AuthDropdownField({
  required super.name,
  required this.items,
  required this.onChanged,
  this.dropdownDecoration,
  this.padding = const EdgeInsets.all(8.0),
  this.textStyle,
  this.icon = const Icon(Icons.keyboard_arrow_down),
  required super.value,
}) {
  selectedValue = value ?? items.first;
}