copyWith method
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,
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,
);