AuthorDTO constructor

AuthorDTO({
  1. String? key,
  2. String? type,
  3. String? name,
  4. String? birthDate,
  5. String? deathDate,
  6. String? date,
  7. String? topWork,
  8. int? workCount,
  9. List<String>? alternateNames,
  10. List<String>? text,
  11. List<String>? topSubjects,
})

Implementation

AuthorDTO(
    {this.key,
    this.type,
    this.name,
    this.birthDate,
    this.deathDate,
    this.date,
    this.topWork,
    this.workCount,
    this.alternateNames,
    this.text,
    this.topSubjects});