copyWith method

SearchHistoryPage copyWith({
  1. int? limit,
  2. int? offset,
  3. SearchHistoryFilterEnumSet? filter,
})

Implementation

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