public static Notification android(String alert, String title) { var platformNotification = new AndroidNotification().setAlert(alert).setTitle(title); var notificaiton = new Notification().setAlert(alert); notificaiton.AndroidNotification = platformNotification; return notificaiton; }
public Notification setAndroid(AndroidNotification android) { this.AndroidNotification = android; return this; }