copyWithWrapped method
Implementation
ConversationConfigClientOverrideInput copyWithWrapped(
{Wrapped<dynamic>? tts,
Wrapped<dynamic>? conversation,
Wrapped<dynamic>? agent}) {
return ConversationConfigClientOverrideInput(
tts: (tts != null ? tts.value : this.tts),
conversation:
(conversation != null ? conversation.value : this.conversation),
agent: (agent != null ? agent.value : this.agent));
}