BasicDate constructor

BasicDate(
  1. int year,
  2. int month,
  3. int day
)

Constructor of BasicDate year, month and day are int and there is no constraint for it

Implementation

BasicDate(this.year, this.month, this.day);