copyWithWrapped method
Implementation
HubGroup copyWithWrapped({Wrapped<int?>? groupId, Wrapped<String?>? name}) {
return HubGroup(
groupId: (groupId != null ? groupId.value : this.groupId),
name: (name != null ? name.value : this.name));
}