ChipProps constructor
const
ChipProps({
- required String label,
- Widget? icon,
- ColorVariant color = ColorVariant.secondary,
- StyleVariant style = StyleVariant.solid,
- ComponentSize size = ComponentSize.md,
- bool removable = false,
- void onRemove()?,
- void onTap()?,
Implementation
const ChipProps({
required this.label,
this.icon,
this.color = ColorVariant.secondary,
this.style = StyleVariant.solid,
this.size = ComponentSize.md,
this.removable = false,
this.onRemove,
this.onTap,
});