DropdownItem<T> constructor

const DropdownItem<T>({
  1. required T value,
  2. required String label,
  3. IconData? icon,
})

Creates a DropdownItem.

Implementation

const DropdownItem({required this.value, required this.label, this.icon});