copyWithWrapped method
Implementation
Paging copyWithWrapped({
Wrapped<int>? limit,
Wrapped<int>? offset,
Wrapped<int>? totalCount,
}) {
return Paging(
limit: (limit != null ? limit.value : this.limit),
offset: (offset != null ? offset.value : this.offset),
totalCount: (totalCount != null ? totalCount.value : this.totalCount),
);
}