copyWith method
Implementation
@override
UserFilter copyWith({
InWhere<int>? ids,
LikeWhere? text,
}) =>
UserFilter(
ids: ids ?? this.ids,
text: text ?? this.text,
);
@override
UserFilter copyWith({
InWhere<int>? ids,
LikeWhere? text,
}) =>
UserFilter(
ids: ids ?? this.ids,
text: text ?? this.text,
);