copyWith method
Implementation
ContentArray copyWith(
{List<Content>? results,
int? start,
int? limit,
int? size,
GenericLinks? links}) {
return ContentArray(
results: results ?? this.results,
start: start ?? this.start,
limit: limit ?? this.limit,
size: size ?? this.size,
links: links ?? this.links,
);
}