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