ChoiceChips constructor

const ChoiceChips({
  1. required List<StringIdText> items,
  2. List<StringIdText>? initialSelection,
  3. bool multiSelect = false,
  4. ChoiceChipsController? controller,
  5. Key? key,
  6. void onSelectionChanged(
    1. List<StringIdText> currentSelection
    )?,
  7. Color? selectedColor,
  8. Color? selectedFgColor,
  9. bool showCheckmark = true,
  10. BorderRadiusGeometry? borderRadius,
  11. Color? fgColor,
  12. Color? color,
  13. EdgeInsetsGeometry? chipPadding,
})

Implementation

const ChoiceChips(
    {required this.items,
    this.initialSelection,
    this.multiSelect = false,
    this.controller,
    super.key,
    this.onSelectionChanged,
    this.selectedColor,
    this.selectedFgColor,
    this.showCheckmark = true,
    this.borderRadius,
    this.fgColor,
    this.color,
    this.chipPadding});