/** * 设置ios * */ public void setIos(PlatformNotification ios) { this.ios = ios; }
/** * 设置android * */ public void setAndroid(PlatformNotification android) { this.android = android; }
public Notification(String alert, PlatformNotification ios, PlatformNotification android) { this.alert = alert; this.ios = ios; this.android = android; }