NeomageChip constructor

const NeomageChip({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. VoidCallback? onRemove,
  5. VoidCallback? onTap,
  6. Color? color,
})

Implementation

const NeomageChip({
  super.key,
  required this.label,
  this.icon,
  this.onRemove,
  this.onTap,
  this.color,
});