Interval constructor

Interval({
  1. int months = 0,
  2. int days = 0,
  3. int microseconds = 0,
})

Implementation

Interval({
  this.months = 0,
  this.days = 0,
  this.microseconds = 0,
});