copyWithWrapped method

Implementation

ConversationConfigClientOverrideConfigInput copyWithWrapped(
    {Wrapped<TTSConversationalConfigOverrideConfig?>? tts,
    Wrapped<ConversationConfigOverrideConfig?>? conversation,
    Wrapped<AgentConfigOverrideConfig?>? agent}) {
  return ConversationConfigClientOverrideConfigInput(
      tts: (tts != null ? tts.value : this.tts),
      conversation:
          (conversation != null ? conversation.value : this.conversation),
      agent: (agent != null ? agent.value : this.agent));
}