AppDropDownButton constructor

const AppDropDownButton({
  1. Key? key,
  2. required List<String> items,
  3. String? hint,
  4. ValueChanged? onChanged,
  5. IconData? icon,
  6. bool isExpanded = true,
  7. Color? iconColor,
  8. String? selectedValue,
})

Implementation

const AppDropDownButton({
  super.key,
  required this.items,
  this.hint,
  this.onChanged,
  this.icon,
  this.isExpanded = true,
  this.iconColor,
  this.selectedValue,
});