DateInterval constructor

DateInterval({
  1. int months = 0,
  2. int days = 0,
  3. int hours = 0,
  4. int minutes = 0,
  5. int seconds = 0,
})

Implementation

DateInterval(
    {this.months = 0,
    this.days = 0,
    this.hours = 0,
    this.minutes = 0,
    this.seconds = 0});