copyWithWrapped method
Implementation
BodyEditPVCVoiceV1VoicesPvcVoiceIdPost copyWithWrapped(
{Wrapped<String?>? name,
Wrapped<String?>? language,
Wrapped<dynamic>? description,
Wrapped<dynamic>? labels}) {
return BodyEditPVCVoiceV1VoicesPvcVoiceIdPost(
name: (name != null ? name.value : this.name),
language: (language != null ? language.value : this.language),
description:
(description != null ? description.value : this.description),
labels: (labels != null ? labels.value : this.labels));
}