getNotificationList method

Future getNotificationList()

Implementation

Future<dynamic> getNotificationList() async {
  var notificationList;
  try {
    if (!kIsWeb) {
      notificationList =
          await RefluttersdkPlatform.instance.getNotificationList();
    }
  } catch (e) {
    debugPrint("$e");
  }
  return notificationList;
}