/// <summary>
 /// Trigger notification about a push message.
 /// </summary>
 /// <param name="notification">PushNotification that was received.</param>
 public void Notify(PushNotification notification) => ReceivedPushNotification?.Invoke(notification);
Example #2
0
 public void NotificationClickedHandler(ReceivedPushNotification notification)
 {
     Debug.Log($"PushTester: {notification.title} {notification.text}");
 }