copyWith method
Implementation
CommentViewModelPaginationViewModel copyWith(
{List<CommentViewModel>? items, int? totalCount}) {
return CommentViewModelPaginationViewModel(
items: items ?? this.items, totalCount: totalCount ?? this.totalCount);
}