androidShouldInterceptRequest property

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform()])
  2. @Deprecated("Use shouldInterceptRequest instead")
FutureOr<WebResourceResponse?> Function(T controller, WebResourceRequest request)? androidShouldInterceptRequest
final

Use shouldInterceptRequest instead.

Officially Supported Platforms/Implementations:

  • Android WebView

Parameters - Officially Supported Platforms/Implementations:

  • request: all platforms

Use the PlatformWebViewCreationParams.isPropertySupported method to check if this property is supported at runtime.

Implementation

@SupportedPlatforms(platforms: [AndroidPlatform()])
@Deprecated("Use shouldInterceptRequest instead")
final FutureOr<WebResourceResponse?> Function(
  T controller,
  WebResourceRequest request,
)?
androidShouldInterceptRequest;