ChipSelectionData<T> constructor

const ChipSelectionData<T>({
  1. required T value,
  2. required String label,
  3. String? tooltip,
  4. bool disabled = false,
  5. bool hidden = false,
  6. dynamic meta,
  7. ChipSelectionItemStyle? style,
  8. ChipSelectionItemStyle? activeStyle,
  9. void select(
    1. bool selected
    )?,
  10. bool selected = false,
})

Default Constructor

Implementation

const ChipSelectionData({
  required this.value,
  required this.label,
  this.tooltip,
  this.disabled = false,
  this.hidden = false,
  this.meta,
  this.style,
  this.activeStyle,
  this.select,
  this.selected = false,
});