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