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