SdInputChip constructor
const
SdInputChip({
- Key? key,
- required String label,
- IconData? icon,
- ChipStyle? style,
- SdChipThemeData? theme,
- bool selected = false,
- bool enabled = true,
- VoidCallback? onTap,
- ValueChanged<
bool> ? onSelected, - VoidCallback? onDelete,
- 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,
});