Client/lib/extensions/dateTime.dart
Elias Müller 591bbbeb45 #22
Enabled Webuntis Holiday query
Implemented Holiday view in Timetable
Hide other special time regions like breaks when shown in holiday
2024-01-07 21:44:51 +01:00

5 lines
149 B
Dart

extension IsSameDay on DateTime {
bool isSameDay(DateTime other) {
return year == other.year && month == other.month && day == other.day;
}
}