setBlockNetworkLoads method
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.
NOTE: available on Android 24+.
Official Android API: https://developer.android.com/reference/androidx/webkit/ServiceWorkerWebSettingsCompat#setBlockNetworkLoads(boolean)
Implementation
Future<void> setBlockNetworkLoads(bool flag) {
throw UnimplementedError(
'setBlockNetworkLoads is not implemented on the current platform');
}