copyWith method
Implementation
FoundGroup copyWith(
{String? groupId, String? html, List<GroupLabel>? labels, String? name}) {
return FoundGroup(
groupId: groupId ?? this.groupId,
html: html ?? this.html,
labels: labels ?? this.labels,
name: name ?? this.name,
);
}