AuthDropdownField constructor
- required String name,
- required List<
String> items, - required dynamic onChanged(),
- InputDecoration? dropdownDecoration,
- EdgeInsets padding = const EdgeInsets.all(8.0),
- TextStyle? textStyle,
- Icon icon = const Icon(Icons.keyboard_arrow_down),
- 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;
}