protected Task InvokeTapHandlersAsync(IPushNotification pushNotification)
 {
     return(_pushNotificationTapHandler.HandleTapAsync(pushNotification));
 }
 protected async Task InvokeTapHandlersAsync(IPushNotification pushNotification)
 {
     AnalyticsService.TraceVerbose(this, "BAckground notification tapped", pushNotification.ToObjectDictionary("PushNotification"));
     await _pushNotificationTapHandler.HandleTapAsync(pushNotification);
 }