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