copyWith method
PermissionFilter
copyWith({
- InWhere<
int> ? ids, - InWhere<
bool> ? status, - LikeWhere? text,
- InWhere<
int> ? typeIds, - InWhere<
int> ? upIds,
override
Implementation
@override
PermissionFilter copyWith({
InWhere<int>? ids,
InWhere<bool>? status,
LikeWhere? text,
InWhere<int>? typeIds,
InWhere<int>? upIds,
}) =>
PermissionFilter(
ids: ids ?? this.ids,
status: status ?? this.status,
text: text ?? this.text,
typeIds: typeIds ?? this.upIds,
upIds: upIds ?? this.upIds,
);