SelectableChip constructor
const
SelectableChip({
- Key? key,
- required String label,
- required VoidCallback onSelected,
- required bool isSelected,
- VoidCallback? onDeleted,
- Color? selectedColor,
- Color? selectedBackgroundColor,
- IconData? icon,
Implementation
const SelectableChip({
super.key,
required this.label,
required this.onSelected,
required this.isSelected,
this.onDeleted,
this.selectedColor,
this.selectedBackgroundColor,
this.icon
});