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