hasEveningCourse property
Whether any course falls in the evening period (A-D).
Implementation
bool get hasEveningCourse => keys.any((s) => s.period.isEvening);
Whether any course falls in the evening period (A-D).
bool get hasEveningCourse => keys.any((s) => s.period.isEvening);