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