AtomicChip constructor
const
AtomicChip({
- Key? key,
- required String label,
- IconData? icon,
- VoidCallback? onTap,
- VoidCallback? onDeleted,
- bool selected = false,
- AtomicChipVariant variant = AtomicChipVariant.outlined,
- AtomicChipSize size = AtomicChipSize.medium,
- Color? backgroundColor,
- Color? borderColor,
- Color? textColor,
Implementation
const AtomicChip({
super.key,
required this.label,
this.icon,
this.onTap,
this.onDeleted,
this.selected = false,
this.variant = AtomicChipVariant.outlined,
this.size = AtomicChipSize.medium,
this.backgroundColor,
this.borderColor,
this.textColor,
});