setAllowFileAccess method
Enables or disables file access within Service Workers.
This method should only be called if WebViewFeature.isFeatureSupported
returns true
for WebViewFeature.SERVICE_WORKER_FILE_ACCESS
.
NOTE: available on Android 24+.
Official Android API: https://developer.android.com/reference/androidx/webkit/ServiceWorkerWebSettingsCompat#setAllowFileAccess(boolean)
Implementation
@override
Future<void> setAllowFileAccess(bool allow) async {
Map<String, dynamic> args = <String, dynamic>{};
args.putIfAbsent("allow", () => allow);
await channel?.invokeMethod('setAllowFileAccess', args);
}