AuiDropdownItem<T> constructor

const AuiDropdownItem<T>({
  1. required T value,
  2. required String label,
  3. IconData? icon,
  4. bool disabled = false,
})

Creates a dropdown item.

Implementation

const AuiDropdownItem({
  required this.value,
  required this.label,
  this.icon,
  this.disabled = false,
});