findEventsByType static method

List<IslamicEvent> findEventsByType(
  1. IslamicEventType type
)

البحث عن مناسبة بنوعها

Implementation

static List<IslamicEvent> findEventsByType(IslamicEventType type) {
  return _events.where((event) => event.type == type).toList();
}