public void DismissCurrentNotification(bool playAnimation = true)
 {
     if (currentNotification != null)
     {
         currentNotification.Dismiss(playAnimation);
     }
     else if (cellPhoneNotificationHandler != null)
     {
         cellPhoneNotificationHandler.DismissNotification(playAnimation);
     }
 }