Example #1
0
        public static Notification ios_incr_badge(int badge)
        {
            var platformNotification = new IosNotification();

            platformNotification.incrBadge(badge);
            var notificaiton = new Notification();

            notificaiton.IosNotification = platformNotification;
            return(notificaiton);
        }