loadPushNotificationsFromEmail static method

Future<List<PamPushMessage>?> loadPushNotificationsFromEmail(
  1. String email
)

Implementation

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