getMainEvents static method

List<IslamicEvent> getMainEvents()

الحصول على جميع المناسبات المهمة (غير التذكيرات)

Implementation

static List<IslamicEvent> getMainEvents() {
  return _events.where((event) => !event.isReminder).toList();
}