TimeValue constructor

TimeValue({
  1. int seconds = 0,
  2. int minutes = 0,
  3. int hours = 0,
  4. int days = 0,
  5. int inSeconds = 0,
  6. int inMinutes = 0,
  7. int inHours = 0,
  8. int inDays = 0,
})

Implementation

TimeValue({
  this.seconds = 0,
  this.minutes = 0,
  this.hours = 0,
  this.days = 0,
  this.inSeconds = 0,
  this.inMinutes = 0,
  this.inHours = 0,
  this.inDays = 0,
});