ComboboxOption<T> constructor

const ComboboxOption<T>({
  1. required T value,
  2. required String label,
  3. String? description,
  4. Widget? icon,
  5. bool disabled = false,
  6. List<String>? keywords,
})

Implementation

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