AgeDifference constructor

AgeDifference({
  1. int years = 0,
  2. int months = 0,
  3. int days = 0,
})

Implementation

AgeDifference({
  this.years = 0,
  this.months = 0,
  this.days = 0,
});