Time constructor
Constructs an instance of Time.
Implementation
const Time([
this.hour = 0,
this.minute = 0,
this.second = 0,
]) : assert(hour >= 0 && hour < 24),
assert(minute >= 0 && minute < 60),
assert(second >= 0 && second < 60);