Enabled Webuntis Holiday query Implemented Holiday view in Timetable Hide other special time regions like breaks when shown in holiday
5 lines
149 B
Dart
5 lines
149 B
Dart
extension IsSameDay on DateTime {
|
|
bool isSameDay(DateTime other) {
|
|
return year == other.year && month == other.month && day == other.day;
|
|
}
|
|
} |