@ReactMethod
 public void presentLocalNotification(ReadableMap details) {
   Bundle bundle = Arguments.toBundle(details);
   mRNPushNotificationHelper.sendNotification(bundle);
 }
 @ReactMethod
 public void cancelAllLocalNotifications() {
   mRNPushNotificationHelper.cancelAll();
 }