Week constructor

const Week(
  1. int weekBasedYear,
  2. int weekOfYear
)

Implementation

const Week(this.weekBasedYear, this.weekOfYear)
    : assert(weekOfYear >= 1 && weekOfYear <= 53);