PDuration constructor

PDuration({
  1. int? year = 0,
  2. int? month = 0,
  3. int? day = 0,
  4. int? hour = 0,
  5. int? minute = 0,
  6. int? second = 0,
})

Implementation

PDuration({
  this.year = 0,
  this.month = 0,
  this.day = 0,
  this.hour = 0,
  this.minute = 0,
  this.second = 0,
});