copyWithWrapped method

BodyCreatePodcastV1StudioPodcastsPost copyWithWrapped({
  1. Wrapped<String>? modelId,
  2. Wrapped? mode,
  3. Wrapped? source,
  4. Wrapped<BodyCreatePodcastV1StudioPodcastsPostQualityPreset?>? qualityPreset,
  5. Wrapped<BodyCreatePodcastV1StudioPodcastsPostDurationScale?>? durationScale,
  6. Wrapped? language,
  7. Wrapped? highlights,
  8. Wrapped? callbackUrl,
})

Implementation

BodyCreatePodcastV1StudioPodcastsPost copyWithWrapped(
    {Wrapped<String>? modelId,
    Wrapped<dynamic>? mode,
    Wrapped<dynamic>? source,
    Wrapped<enums.BodyCreatePodcastV1StudioPodcastsPostQualityPreset?>?
        qualityPreset,
    Wrapped<enums.BodyCreatePodcastV1StudioPodcastsPostDurationScale?>?
        durationScale,
    Wrapped<dynamic>? language,
    Wrapped<dynamic>? highlights,
    Wrapped<dynamic>? callbackUrl}) {
  return BodyCreatePodcastV1StudioPodcastsPost(
      modelId: (modelId != null ? modelId.value : this.modelId),
      mode: (mode != null ? mode.value : this.mode),
      source: (source != null ? source.value : this.source),
      qualityPreset:
          (qualityPreset != null ? qualityPreset.value : this.qualityPreset),
      durationScale:
          (durationScale != null ? durationScale.value : this.durationScale),
      language: (language != null ? language.value : this.language),
      highlights: (highlights != null ? highlights.value : this.highlights),
      callbackUrl:
          (callbackUrl != null ? callbackUrl.value : this.callbackUrl));
}