SdInputChip constructor

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

Creates an input chip.

Implementation

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