copyWithWrapped method

ConversationConfigClientOverrideInput copyWithWrapped({
  1. Wrapped? tts,
  2. Wrapped? conversation,
  3. Wrapped? agent,
})

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));
}