copyWithWrapped method

UpdateHomeHubConnectionV3Body copyWithWrapped({
  1. Wrapped<String?>? hubId,
  2. Wrapped<ClientsTwinDTO?>? clients,
})

Implementation

UpdateHomeHubConnectionV3Body copyWithWrapped(
    {Wrapped<String?>? hubId, Wrapped<ClientsTwinDTO?>? clients}) {
  return UpdateHomeHubConnectionV3Body(
      hubId: (hubId != null ? hubId.value : this.hubId),
      clients: (clients != null ? clients.value : this.clients));
}