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