setBlockNetworkLoads static method

Future<void> setBlockNetworkLoads(
  1. bool flag
)

Sets whether Service Workers should not load resources from the network. This method should only be called if WebViewFeature.isFeatureSupported returns true for WebViewFeature.SERVICE_WORKER_BLOCK_NETWORK_LOADS.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • flag: all platforms

Use the PlatformServiceWorkerController.isMethodSupported method to check if this method is supported at runtime.

Implementation

static Future<void> setBlockNetworkLoads(bool flag) =>
    PlatformServiceWorkerController.static().setBlockNetworkLoads(flag);