NiceTag constructor

const NiceTag({
  1. Key? key,
  2. required String label,
  3. Color? color,
  4. IconData? icon,
  5. VoidCallback? onRemove,
  6. bool outlined = false,
  7. 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,
});