copyWithWrapped method

BodyEditPVCVoiceV1VoicesPvcVoiceIdPost copyWithWrapped({
  1. Wrapped<String?>? name,
  2. Wrapped<String?>? language,
  3. Wrapped? description,
  4. Wrapped? labels,
})

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