TUITag constructor

const TUITag({
  1. Key? key,
  2. TUITagContrast tagContrast = TUITagContrast.low,
  3. required TUITagIconType tagIconType,
  4. required TUITagSize tagSize,
  5. required String tagText,
})

Implementation

const TUITag({
  super.key,
  this.tagContrast = TUITagContrast.low,
  required this.tagIconType,
  required this.tagSize,
  required this.tagText,
});