copyWithWrapped method

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

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