copyWith method

  1. @override
TagFilterGroup copyWith({
  1. FilterGroupID? groupID,
  2. Set<FilterTag>? filters,
})
override

Make a copy of the tag filters group.

Implementation

@override
TagFilterGroup copyWith({
  FilterGroupID? groupID,
  Set<FilterTag>? filters,
}) =>
    TagFilterGroup(
      groupID ?? this.groupID,
      filters ?? _filters,
    );