copyWithWrapped method
ConversationConfigClientOverrideConfigInput
copyWithWrapped({
- Wrapped<
TTSConversationalConfigOverrideConfig?> ? tts, - Wrapped<
ConversationConfigOverrideConfig?> ? conversation, - Wrapped<
AgentConfigOverrideConfig?> ? agent,
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));
}