Changelog constructor
Changelog({
- UserDetails? author,
- DateTime? created,
- HistoryMetadata? historyMetadata,
- String? id,
- List<
ChangeDetails> ? items,
Implementation
Changelog(
{this.author,
this.created,
this.historyMetadata,
this.id,
List<ChangeDetails>? items})
: items = items ?? [];