Version constructor
Version({
- User? by,
- required DateTime when,
- String? friendlyWhen,
- String? message,
- required int number,
- required bool minorEdit,
- Content? content,
- UsersUserKeys? collaborators,
- VersionExpandable? expandable,
- GenericLinks? links,
- bool? contentTypeModified,
- String? confRev,
- String? syncRev,
- String? syncRevSource,
Implementation
Version(
{this.by,
required this.when,
this.friendlyWhen,
this.message,
required this.number,
required this.minorEdit,
this.content,
this.collaborators,
this.expandable,
this.links,
bool? contentTypeModified,
this.confRev,
this.syncRev,
this.syncRevSource})
: contentTypeModified = contentTypeModified ?? false;