CountByYear constructor

CountByYear({
  1. int? year,
  2. int? worksCount,
  3. int? citedByCount,
})

Implementation

CountByYear({
  this.year,
  this.worksCount,
  this.citedByCount,
});