BasicChip constructor

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

Implementation

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