ArcaneChip.warning constructor

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

Implementation

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