copyWith method

Paging copyWith({
  1. int? limit,
  2. int? offset,
  3. int? totalCount,
})

Implementation

Paging copyWith({int? limit, int? offset, int? totalCount}) {
  return Paging(
    limit: limit ?? this.limit,
    offset: offset ?? this.offset,
    totalCount: totalCount ?? this.totalCount,
  );
}