public static void CreateNotificationChannelGroup(NotificationChannelGroup group)
        {
            if (AGUtils.IsNotAndroid() || HasNoNewNotificationsApi)
            {
                return;
            }

            CreateGroup(group);
        }
 static void CreateGroup(NotificationChannelGroup group)
 {
     AGSystemService.NotificationService.Call("createNotificationChannelGroup", group.AJO);
 }