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