copyWith method
Implementation
PaginatedResponseComment copyWith(
{int? maxResults, List<Comment>? results, int? startAt, int? total}) {
return PaginatedResponseComment(
maxResults: maxResults ?? this.maxResults,
results: results ?? this.results,
startAt: startAt ?? this.startAt,
total: total ?? this.total,
);
}