SelectableChip constructor

const SelectableChip({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onSelected,
  4. required bool isSelected,
  5. VoidCallback? onDeleted,
  6. Color? selectedColor,
  7. Color? selectedBackgroundColor,
  8. IconData? icon,
})

Implementation

const SelectableChip({
  super.key,
  required this.label,
  required this.onSelected,
  required this.isSelected,
  this.onDeleted,
  this.selectedColor,
  this.selectedBackgroundColor,
  this.icon
});