copyWith method

FilterTag copyWith({
  1. String? value,
  2. bool? isNegated,
})

Make a copy of the tag filter.

Implementation

FilterTag copyWith({
  String? value,
  bool? isNegated,
}) =>
    FilterTag._(
      value ?? this.value,
      isNegated ?? this.isNegated,
    );