CoolDropdownItem<T> constructor

CoolDropdownItem<T>({
  1. required String label,
  2. bool isSelected = false,
  3. Widget? icon,
  4. Widget? selectedIcon,
  5. required T value,
})

Implementation

CoolDropdownItem({
  required this.label,
  this.isSelected = false,
  this.icon,
  this.selectedIcon,
  required this.value,
});