SelectOptionProps<T> constructor

const SelectOptionProps<T>({
  1. required T value,
  2. required String label,
  3. String? subtitle,
  4. String? description,
  5. Component? icon,
  6. bool disabled = false,
  7. List<String>? searchKeywords,
})

Implementation

const SelectOptionProps({
  required this.value,
  required this.label,
  this.subtitle,
  this.description,
  this.icon,
  this.disabled = false,
  this.searchKeywords,
});