Suffix constructor

Suffix({
  1. String years = '',
  2. String month = '',
  3. String days = '',
  4. String hours = '',
  5. String minutes = '',
  6. String seconds = '',
})

Implementation

Suffix({
  this.years = '',
  this.month = '',
  this.days = '',
  this.hours = '',
  this.minutes = '',
  this.seconds = '',
});