Cohort constructor

Cohort({
  1. DateRange? dateRange,
  2. String? name,
  3. String? type,
})

Implementation

Cohort({
  this.dateRange,
  this.name,
  this.type,
});