loadPushNotifications static method

Future<List<PamPushMessage>?> loadPushNotifications()

Implementation

static Future<List<PamPushMessage>?> loadPushNotifications() async {
  var pushAPI = PamPushNotificationAPI(shared.config?.pamServer ?? "");
  return await pushAPI.loadPushNotifications();
}