getEventsThisMonth static method

List<IslamicEvent> getEventsThisMonth()

الحصول على المناسبات في الشهر الحالي

Implementation

static List<IslamicEvent> getEventsThisMonth() {
  return _events.where((event) => event.isThisMonth()).toList();
}