copyWithWrapped method

BodyTextToDialogueMultiVoiceV1TextToDialoguePost copyWithWrapped({
  1. Wrapped<List<DialogueInput>>? inputs,
  2. Wrapped<String?>? modelId,
  3. Wrapped? settings,
  4. Wrapped? pronunciationDictionaryLocators,
  5. Wrapped? seed,
})

Implementation

BodyTextToDialogueMultiVoiceV1TextToDialoguePost copyWithWrapped(
    {Wrapped<List<DialogueInput>>? inputs,
    Wrapped<String?>? modelId,
    Wrapped<dynamic>? settings,
    Wrapped<dynamic>? pronunciationDictionaryLocators,
    Wrapped<dynamic>? seed}) {
  return BodyTextToDialogueMultiVoiceV1TextToDialoguePost(
      inputs: (inputs != null ? inputs.value : this.inputs),
      modelId: (modelId != null ? modelId.value : this.modelId),
      settings: (settings != null ? settings.value : this.settings),
      pronunciationDictionaryLocators:
          (pronunciationDictionaryLocators != null
              ? pronunciationDictionaryLocators.value
              : this.pronunciationDictionaryLocators),
      seed: (seed != null ? seed.value : this.seed));
}