addNewNotification method
Implementation
@override
void addNewNotification(String notificationTitle, String notificationBody) {
methodChannel.invokeMapMethod('addNotification', {
'notificationTitle': notificationTitle,
'notificationBody': notificationBody
});
}