copyWithWrapped method

BodyCreateAgentV1ConvaiAgentsCreatePost copyWithWrapped({
  1. Wrapped<ConversationalConfigAPIModelInput>? conversationConfig,
  2. Wrapped? platformSettings,
  3. Wrapped? name,
  4. Wrapped? tags,
})

Implementation

BodyCreateAgentV1ConvaiAgentsCreatePost copyWithWrapped(
    {Wrapped<ConversationalConfigAPIModelInput>? conversationConfig,
    Wrapped<dynamic>? platformSettings,
    Wrapped<dynamic>? name,
    Wrapped<dynamic>? tags}) {
  return BodyCreateAgentV1ConvaiAgentsCreatePost(
      conversationConfig: (conversationConfig != null
          ? conversationConfig.value
          : this.conversationConfig),
      platformSettings: (platformSettings != null
          ? platformSettings.value
          : this.platformSettings),
      name: (name != null ? name.value : this.name),
      tags: (tags != null ? tags.value : this.tags));
}