ChoiceChipTip<T> constructor

const ChoiceChipTip<T>({
  1. Key? key,
  2. required List<T> options,
  3. required T selectedOption,
  4. required ValueChanged<T?> onSelected,
  5. Map? tooltips,
  6. bool enabled = true,
  7. String getLabel(
    1. T
    )?,
})

Implementation

const ChoiceChipTip({
  super.key,
  required this.options,
  required this.selectedOption,
  required this.onSelected,
  this.tooltips,
  this.enabled = true,
  String Function(T)? getLabel,
}) : getLabel = getLabel ?? _defaultGetLabel;