copyWithWrapped method

HubGroup copyWithWrapped({
  1. Wrapped<int?>? groupId,
  2. Wrapped<String?>? name,
})

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));
}