TimeCellValue constructor

const TimeCellValue({
  1. int hour = 0,
  2. int minute = 0,
  3. int second = 0,
  4. int millisecond = 0,
  5. int microsecond = 0,
})

Implementation

const TimeCellValue({
  this.hour = 0,
  this.minute = 0,
  this.second = 0,
  this.millisecond = 0,
  this.microsecond = 0,
})  : assert(hour >= 0),
      assert(minute <= 60 && minute >= 0),
      assert(second <= 60 && second >= 0),
      assert(millisecond <= 1000 && millisecond >= 0),
      assert(microsecond <= 1000 && microsecond >= 0);