/// <summary>
 /// Dismisses the safe browsing component.
 ///
 /// This method only works on iOS. On Android, there is no way to dismiss the safe browsing component
 /// programatically as the result of the limitation from the native (Android) side.
 /// </summary>
 public void Dismiss()
 {
     #if UNITY_IOS && !UNITY_EDITOR
     UniWebViewInterface.SafeBrowsingDismiss(listener.Name);
     #endif
 }