copyWith method
Implementation
ArticleDTO copyWith(
{ContentDTO? content,
String? excerpt,
SourceDTO? source,
String? title}) {
return ArticleDTO(
content: content ?? this.content,
excerpt: excerpt ?? this.excerpt,
source: source ?? this.source,
title: title ?? this.title,
);
}