MultiSelectChipGroup constructor

const MultiSelectChipGroup({
  1. Key? key,
  2. required List<MultiSelectChipConfig> chips,
  3. Set<String>? selectedIds,
  4. Set<String> initialSelectedIds = const <String>{},
  5. ChipStyle? style,
  6. SdChipThemeData? theme,
  7. double spacing = 12,
  8. double runSpacing = 12,
  9. ValueChanged<Set<String>>? onSelectionChanged,
})

Creates a multi-select chip group.

Implementation

const MultiSelectChipGroup({
  super.key,
  required this.chips,
  this.selectedIds,
  this.initialSelectedIds = const <String>{},
  this.style,
  this.theme,
  this.spacing = 12,
  this.runSpacing = 12,
  this.onSelectionChanged,
});