getEventsForDate static method

List<IslamicEvent> getEventsForDate(
  1. HijriDate date
)

Gets Islamic events for a specific date using the new system

Implementation

static List<IslamicEvent> getEventsForDate(HijriDate date) {
  final allEvents = IslamicEventsManager.allEvents;
  return allEvents
      .where((event) =>
          event.month == date.hMonth && event.days.contains(date.hDay))
      .toList();
}