TagFilter.fromType constructor

TagFilter.fromType({
  1. required TagFilterType tagFilterType,
  2. required String tagName,
  3. bool contains = true,
})

Implementation

TagFilter.fromType({
  required final TagFilterType tagFilterType,
  required final String tagName,
  final bool contains = true,
}) : this._(
        tagType: tagFilterType.offTag,
        contains: contains,
        tagName: tagName,
      );