Realtime constructor
const
Realtime({})
Constructs a Realtime instance with the specified parameters.
Example:
Realtime myTime = Realtime(
today: true,
hours: 2,
minutes: 30,
);
print(myTime.isHourMode); // Output: true
Implementation
const Realtime({
this.today = false,
this.tomorrow = false,
this.yesterday = false,
this.days = 0,
this.hours = 0,
this.minutes = 0,
this.seconds = 0,
this.milliseconds = 0,
this.microseconds = 0,
});