addNewNotification method
Implementation
void addNewNotification(String notificationTitle, String notificationBody) {
try {
if (!kIsWeb) {
RefluttersdkPlatform.instance
.addNewNotification(notificationTitle, notificationBody);
}
} catch (e) {
debugPrint("$e");
}
}