// Can use enum as flag:
 //      SetNotificationsAllowed(PubServicesNotificationType.Toast | PubServicesNotificationType.Modal);
 public static void SetNotificationsAllowed(PubServicesNotificationType value)
 {
     if (IsInitialized())
     {
         SharedInstance._instance.SetNotificationsAllowed(value);
     }
 }
 public void SetNotificationsAllowed(PubServicesNotificationType value)
 {
     _pluginWrapper.CallStatic("setNotificationsAllowed", (int)value);
 }