TimeOfDay constructor
Constructs an instance of TimeOfDay.
Implementation
const TimeOfDay({this.hour = 0, this.minute = 0, this.second = 0})
: assert(hour >= 0 && hour < 24),
assert(minute >= 0 && minute < 60),
assert(second >= 0 && second < 60),
super();