copyWith method
Implementation
SearchHistoryPage copyWith({
int? limit,
int? offset,
SearchHistoryFilterEnumSet? filter
}) {
return SearchHistoryPage(
limit: limit ?? this.limit,
offset: offset ?? this.offset,
filter: filter ?? this.filter
);
}