import '../../models/notification_model.dart'; typedef NotificationList = List; abstract class NotificationService { /// Returns all notifications for admin. Future getNotifications(); /// Broadcasts a public notification to all users. Future sendPublicNotification(String title, String description); }