internal static iOSNotificationListenerInfo ToIOSNotificationListenerInfo(INotificationListener listener) { var iOSListenerInfo = new iOSNotificationListenerInfo(); iOSListenerInfo.name = listener.Name; iOSListenerInfo.backgroundNotificationMethod = Helper.GetMethodName(listener.NativeNotificationFromBackgroundHandler); iOSListenerInfo.foregroundNotificationMethod = Helper.GetMethodName(listener.NativeNotificationFromForegroundHandler); return(iOSListenerInfo); }
internal static extern void _InitNotifications(ref iOSNotificationAuthOptions authOptions, ref iOSNotificationListenerInfo listener, string jsonCategories);