Author constructor

Author({
  1. int? citedByCount,
  2. List<CountByYear>? countsByYear,
  3. String? createdDate,
  4. String? displayName,
  5. List<String>? displayNameAlternatives,
  6. String? id,
  7. AlexIds? ids,
  8. DehydratedInstitution? lastKnownInstitution,
  9. String? orcid,
  10. SummaryStats? summaryStats,
  11. String? updatedDate,
  12. String? worksApiUrl,
  13. int? worksCount,
  14. List<DehydratedConcept>? xConcepts,
})

Implementation

Author({
  this.citedByCount,
  this.countsByYear,
  this.createdDate,
  this.displayName,
  this.displayNameAlternatives,
  this.id,
  this.ids,
  this.lastKnownInstitution,
  this.orcid,
  this.summaryStats,
  this.updatedDate,
  this.worksApiUrl,
  this.worksCount,
  this.xConcepts,
});