copyWith method

UpdateHomeHubConnectionV3Body copyWith({
  1. String? hubId,
  2. ClientsTwinDTO? clients,
})

Implementation

UpdateHomeHubConnectionV3Body copyWith(
    {String? hubId, ClientsTwinDTO? clients}) {
  return UpdateHomeHubConnectionV3Body(
      hubId: hubId ?? this.hubId, clients: clients ?? this.clients);
}