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