copyWith method
Implementation
PageOfChangelogsHistoriesItem copyWith(
{String? id,
Map<String, dynamic>? author,
DateTime? created,
List<PageOfChangelogsHistoriesItemItemsItem>? items,
Map<String, dynamic>? historyMetadata}) {
return PageOfChangelogsHistoriesItem(
id: id ?? this.id,
author: author ?? this.author,
created: created ?? this.created,
items: items ?? this.items,
historyMetadata: historyMetadata ?? this.historyMetadata,
);
}