onSafeBrowsingHit method

  1. @override
Future<SafeBrowsingResponse?>? onSafeBrowsingHit(
  1. WebUri url,
  2. SafeBrowsingThreat? threatType
)
override

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+.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<SafeBrowsingResponse?>? onSafeBrowsingHit(
    WebUri url, SafeBrowsingThreat? threatType) {
  return null;
}