copyWithWrapped method
AgentWorkspaceOverridesOutput
copyWithWrapped({
- Wrapped? conversationInitiationClientDataWebhook,
- Wrapped<
ConvAIWebhooks?> ? webhooks,
Implementation
AgentWorkspaceOverridesOutput copyWithWrapped(
{Wrapped<dynamic>? conversationInitiationClientDataWebhook,
Wrapped<ConvAIWebhooks?>? webhooks}) {
return AgentWorkspaceOverridesOutput(
conversationInitiationClientDataWebhook:
(conversationInitiationClientDataWebhook != null
? conversationInitiationClientDataWebhook.value
: this.conversationInitiationClientDataWebhook),
webhooks: (webhooks != null ? webhooks.value : this.webhooks));
}