WorkDTO constructor

WorkDTO({
  1. String? title,
  2. List<int>? covers,
  3. List<String>? subjectPlaces,
  4. String? firstPublishDate,
  5. List<String>? subjectPeople,
  6. String? key,
  7. List<AuthorPart>? authors,
  8. List<String>? subjects,
  9. List<String>? subjectTimes,
  10. int? latestRevision,
  11. int? revision,
})

Implementation

WorkDTO({
  this.title,
  this.covers,
  this.subjectPlaces,
  this.firstPublishDate,
  this.subjectPeople,
  this.key,
  this.authors,
  this.subjects,
  this.subjectTimes,
  this.latestRevision,
  this.revision,
});