ContentHistory constructor

ContentHistory({
  1. required bool latest,
  2. User? createdBy,
  3. User? ownedBy,
  4. User? lastOwnedBy,
  5. DateTime? createdDate,
  6. Version? lastUpdated,
  7. Version? previousVersion,
  8. ContentHistoryContributors? contributors,
  9. Version? nextVersion,
  10. ContentHistoryExpandable? expandable,
  11. GenericLinks? links,
})

Implementation

ContentHistory(
    {required this.latest,
    this.createdBy,
    this.ownedBy,
    this.lastOwnedBy,
    this.createdDate,
    this.lastUpdated,
    this.previousVersion,
    this.contributors,
    this.nextVersion,
    this.expandable,
    this.links});