KSelectOption<T> constructor

const KSelectOption<T>({
  1. T? value,
  2. Widget? icon,
  3. Widget? label,
  4. Widget? sublabel,
  5. Widget labelBuilder(
    1. BuildContext
    )?,
  6. Widget? child,
  7. bool disabled = false,
  8. bool divider = false,
})

Implementation

const KSelectOption(
    {this.value,
    this.icon,
    this.label,
    this.sublabel,
    this.labelBuilder,
    this.child,
    this.disabled = false,
    this.divider = false});