SelectOptionConfig<K, V> constructor

const SelectOptionConfig<K, V>({
  1. Widget? prefixIcon,
  2. IKeyedOptionsHandler<K, V>? handler,
  3. TypeaheadHandler<K, V>? viewHandler,
  4. Predicate? resultFilter,
  5. bool isDisabled = false,
  6. bool? isRequired,
})

Implementation

const SelectOptionConfig({
  this.prefixIcon,
  this.handler,
  this.viewHandler,
  this.resultFilter,
  this.isDisabled = false,
  this.isRequired,
});