androidOnSafeBrowsingHit property

(Future<SafeBrowsingResponse?> Function(InAppWebViewController controller, Uri url, SafeBrowsingThreat? threatType)?) androidOnSafeBrowsingHit
final

Event fired when the webview notifies that a loading URL has been flagged by Safe Browsing. The default behavior is to show an interstitial to the user, with the reporting checkbox visible.

url represents the url of the request.

threatType represents the reason the resource was caught by Safe Browsing, corresponding to a SafeBrowsingThreat.

NOTE: available only on Android 27+.

Official Android API: https://developer.android.com/reference/android/webkit/WebViewClient#onSafeBrowsingHit(android.webkit.WebView,%20android.webkit.WebResourceRequest,%20int,%20android.webkit.SafeBrowsingResponse)

Implementation

final Future<SafeBrowsingResponse?> Function(
    InAppWebViewController controller,
    Uri url,
    SafeBrowsingThreat? threatType)? androidOnSafeBrowsingHit;