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