copyWith method

  1. @override
AccountFilter copyWith({
  1. InWhere<int>? ids,
  2. InWhere<bool>? status,
  3. LikeWhere? text,
  4. InWhere<int>? branchIds,
  5. InWhere<int>? typeIds,
  6. InWhere<int>? levelIds,
  7. InWhere<int>? groupIds,
  8. InWhere<int>? upIds,
  9. InWhere<int>? userIds,
})
override

Implementation

@override
AccountFilter copyWith({
  InWhere<int>? ids,
  InWhere<bool>? status,
  LikeWhere? text,
  InWhere<int>? branchIds,
  InWhere<int>? typeIds,
  InWhere<int>? levelIds,
  InWhere<int>? groupIds,
  InWhere<int>? upIds,
  InWhere<int>? userIds,
}) =>
    AccountFilter(
      ids: ids ?? this.ids,
      status: status ?? this.status,
      text: text ?? this.text,
      branchIds: branchIds ?? this.branchIds,
      typeIds: typeIds ?? this.typeIds,
      levelIds: levelIds ?? this.levelIds,
      groupIds: groupIds ?? this.groupIds,
      upIds: upIds ?? this.upIds,
      userIds: userIds ?? this.userIds,
    );