AtomicChip constructor

const AtomicChip({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. VoidCallback? onTap,
  5. VoidCallback? onDeleted,
  6. bool selected = false,
  7. AtomicChipVariant variant = AtomicChipVariant.outlined,
  8. AtomicChipSize size = AtomicChipSize.medium,
  9. Color? backgroundColor,
  10. Color? borderColor,
  11. 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,
});