Date constructor

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

Implementation

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