loadPushNotificationsFromCustomerID static method

Future<List<PamPushMessage>?> loadPushNotificationsFromCustomerID(
  1. String customer
)

Implementation

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