retrieveNotificationPayloadsData static method

Future<ModelNotification> retrieveNotificationPayloadsData()

Retrieve notification payloads data object

Implementation

static Future<ModelNotification> retrieveNotificationPayloadsData() async {
  final String? notificationData = await FeedSDK._singleton._appPreferences
      ?.getString(Constants.notificationId);
  return ModelNotification.fromJson(notificationData);
}