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