copyWithWrapped method

AudioNativeEditContentResponseModel copyWithWrapped({
  1. Wrapped<String>? projectId,
  2. Wrapped<bool>? converting,
  3. Wrapped<bool>? publishing,
  4. Wrapped<String>? htmlSnippet,
})

Implementation

AudioNativeEditContentResponseModel copyWithWrapped(
    {Wrapped<String>? projectId,
    Wrapped<bool>? converting,
    Wrapped<bool>? publishing,
    Wrapped<String>? htmlSnippet}) {
  return AudioNativeEditContentResponseModel(
      projectId: (projectId != null ? projectId.value : this.projectId),
      converting: (converting != null ? converting.value : this.converting),
      publishing: (publishing != null ? publishing.value : this.publishing),
      htmlSnippet:
          (htmlSnippet != null ? htmlSnippet.value : this.htmlSnippet));
}