copyWith method

  1. @override
BranchFilter copyWith({
  1. InWhere<int>? ids,
  2. InWhere<bool>? status,
  3. LikeWhere? text,
})
override

Implementation

@override
BranchFilter copyWith({
  InWhere<int>? ids,
  InWhere<bool>? status,
  LikeWhere? text,
}) =>
    BranchFilter(
      ids: ids ?? this.ids,
      status: status ?? this.status,
      text: text ?? this.text,
    );