copyWith method

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

Implementation

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