ChoiceChip constructor
const
ChoiceChip({
- Key? key,
- required String label,
- required String id,
- IconData? icon,
- ChipStyle? style,
- SdChipThemeData? theme,
- bool selected = false,
- bool enabled = true,
- ValueChanged<
bool> ? onSelected,
Creates a choice chip.
Implementation
const ChoiceChip({
super.key,
required this.label,
required this.id,
this.icon,
this.style,
this.theme,
this.selected = false,
this.enabled = true,
this.onSelected,
});