ChoiceChipGroup constructor

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

Creates a choice chip group.

Implementation

const ChoiceChipGroup({
  super.key,
  required this.chips,
  this.selectedId,
  this.initialSelectedId,
  this.style,
  this.theme,
  this.spacing = 12,
  this.runSpacing = 12,
  this.onSelectionChanged,
});