copyWithWrapped method

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

Implementation

BodyCreatePVCVoiceV1VoicesPvcPost copyWithWrapped(
    {Wrapped<String>? name,
    Wrapped<String>? language,
    Wrapped<dynamic>? description,
    Wrapped<dynamic>? labels}) {
  return BodyCreatePVCVoiceV1VoicesPvcPost(
      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));
}