MultiSelectChip constructor

const MultiSelectChip({
  1. Key? key,
  2. required String label,
  3. required String id,
  4. IconData? icon,
  5. ChipStyle? style,
  6. SdChipThemeData? theme,
  7. bool selected = false,
  8. bool enabled = true,
  9. ValueChanged<bool>? onSelected,
})

Creates a multi-select chip.

Implementation

const MultiSelectChip({
  super.key,
  required this.label,
  required this.id,
  this.icon,
  this.style,
  this.theme,
  this.selected = false,
  this.enabled = true,
  this.onSelected,
});