Duration constructor

Duration({
  1. TimeUnit? unit,
  2. int? value,
})

Implementation

Duration({
  this.unit,
  this.value,
});