SelectableChip constructor

const SelectableChip({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. ChipStyle? style,
  5. SdChipThemeData? theme,
  6. bool? selected,
  7. bool initialSelected = false,
  8. bool enabled = true,
  9. ValueChanged<bool>? onSelected,
  10. VoidCallback? onTap,
})

Creates a selectable chip.

Implementation

const SelectableChip({
  super.key,
  required this.label,
  this.icon,
  this.style,
  this.theme,
  this.selected,
  this.initialSelected = false,
  this.enabled = true,
  this.onSelected,
  this.onTap,
});