NiceTagItem constructor

const NiceTagItem({
  1. required String label,
  2. double weight = 1,
  3. Color? color,
  4. dynamic data,
})

Implementation

const NiceTagItem({
  required this.label,
  this.weight = 1,
  this.color,
  this.data,
});