copyWith method
Implementation
QuerySpec copyWith({
List<FilterOp>? filters,
List<OrderSpec>? orderBy,
int? limit,
int? offset,
}) {
return QuerySpec(
filters: filters ?? this.filters,
orderBy: orderBy ?? this.orderBy,
limit: limit ?? this.limit,
offset: offset ?? this.offset,
);
}