loadPushNotificationsFromMobile static method

Future<List<PamPushMessage>?> loadPushNotificationsFromMobile(
  1. String mobileNumber
)

Implementation

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