copyWithWrapped method
Implementation
ConversationInitiationClientDataRequestInput copyWithWrapped(
{Wrapped<ConversationConfigClientOverrideInput?>?
conversationConfigOverride,
Wrapped<Object?>? customLlmExtraBody,
Wrapped<Map<String, dynamic>?>? dynamicVariables}) {
return ConversationInitiationClientDataRequestInput(
conversationConfigOverride: (conversationConfigOverride != null
? conversationConfigOverride.value
: this.conversationConfigOverride),
customLlmExtraBody: (customLlmExtraBody != null
? customLlmExtraBody.value
: this.customLlmExtraBody),
dynamicVariables: (dynamicVariables != null
? dynamicVariables.value
: this.dynamicVariables));
}