getAllowFileAccess static method

Future<bool> getAllowFileAccess()

Gets whether Service Workers support file access. This method should only be called if AndroidWebViewFeature.isFeatureSupported returns true for AndroidWebViewFeature.SERVICE_WORKER_FILE_ACCESS.

NOTE: available on Android 24+.

Official Android API: https://developer.android.com/reference/androidx/webkit/ServiceWorkerWebSettingsCompat#getAllowFileAccess()

Implementation

static Future<bool> getAllowFileAccess() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await _channel.invokeMethod('getAllowFileAccess', args);
}