UseTags constructor
Implementation
UseTags(
{required this.tags,
required this.active,
required this.clickable,
required this.categories,
this.filteringLogic = FilteringLogic.DEFAULT}) {
unCategorizedTags = tags.where((tag) => tag.category == null).toList();
}