copyWith method

AudioNativeEditContentResponseModel copyWith({
  1. String? projectId,
  2. bool? converting,
  3. bool? publishing,
  4. String? htmlSnippet,
})

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