NiceTag constructor
- Key? key,
- required String label,
- Color? color,
- IconData? icon,
- VoidCallback? onRemove,
- bool outlined = false,
- NiceTagSize size = NiceTagSize.medium,
Implementation
const NiceTag({
super.key,
required this.label,
this.color,
this.icon,
this.onRemove,
this.outlined = false,
this.size = NiceTagSize.medium,
});