copyWith method
Implementation
AudioNativeCreateProjectResponseModel copyWith(
{String? projectId, bool? converting, String? htmlSnippet}) {
return AudioNativeCreateProjectResponseModel(
projectId: projectId ?? this.projectId,
converting: converting ?? this.converting,
htmlSnippet: htmlSnippet ?? this.htmlSnippet);
}