Date constructor

Date({
  1. int? year,
  2. int? month,
  3. int? day,
})

Implementation

Date({
  this.year,
  this.month,
  this.day,
});