TimeLeftFormate constructor

TimeLeftFormate({
  1. String? second,
  2. String? minute,
  3. String? hour,
  4. String? day,
  5. String? week,
  6. String? month,
  7. String? year,
})

Implementation

TimeLeftFormate({
  this.second,
  this.minute,
  this.hour,
  this.day,
  this.week,
  this.month,
  this.year,
});