ArcaneChip constructor

const ArcaneChip({
  1. required String label,
  2. Component? icon,
  3. ChipStyle? style,
  4. ChipSize size = ChipSize.medium,
  5. bool removable = false,
  6. void onRemove()?,
  7. void onTap()?,
  8. Key? key,
})

Implementation

const ArcaneChip({
  required this.label,
  this.icon,
  this.style,
  this.size = ChipSize.medium,
  this.removable = false,
  this.onRemove,
  this.onTap,
  super.key,
});