copyWith method

BranchUserFilter copyWith({
  1. InWhere<int>? branchIds,
  2. InWhere<int>? roleIds,
  3. InWhere<int>? userIds,
  4. InWhere<bool?>? status,
})

Implementation

BranchUserFilter copyWith({
  InWhere<int>? branchIds,
  InWhere<int>? roleIds,
  InWhere<int>? userIds,
  InWhere<bool?>? status,
}) =>
    BranchUserFilter(
      branchIds: branchIds ?? this.branchIds,
      roleIds: roleIds ?? this.roleIds,
      userIds: userIds ?? this.userIds,
      status: status ?? this.status,
    );