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