Changelog constructor

Changelog({
  1. UserDetails? author,
  2. DateTime? created,
  3. HistoryMetadata? historyMetadata,
  4. String? id,
  5. List<ChangeDetails>? items,
})

Implementation

Changelog(
    {this.author,
    this.created,
    this.historyMetadata,
    this.id,
    List<ChangeDetails>? items})
    : items = items ?? [];