copyWith method
Implementation
Group copyWith(
{GroupType? type, String? name, String? id, GenericLinks? links}) {
return Group(
type: type ?? this.type,
name: name ?? this.name,
id: id ?? this.id,
links: links ?? this.links,
);
}