static TimeOfDay parseMinute2TimeOfDay(int time) { return TimeOfDay( hour: time ~/ 60, minute: time % 60, ); }