void LaunchNotification(string data)
 {
     NotificationCenter.SetLastNotifification(data);
 }
 void PendingNotificationsRequest(string data)
 {
     NotificationCenter.PendingNotificationsRequestResponse(data);
 }
 void AddNotificationRequestEvent(string data)
 {
     NotificationCenter.AddNotificationRequestResponse(data);
 }
 void WillPresentNotification(string data)
 {
     NotificationCenter.WillPresentNotification(data);
 }
 void RequestPermissionsCallbackEvent(string data)
 {
     NotificationCenter.RequestPermissionsResponse(data);
 }