isMultiProcessEnabled static method

Future<bool> isMultiProcessEnabled()

Returns true if WebView is running in multi process mode.

In Android O and above, WebView may run in "multiprocess" mode. In multiprocess mode, rendering of web content is performed by a sandboxed renderer process separate to the application process. This renderer process may be shared with other WebViews in the application, but is not shared with other application processes.

Officially Supported Platforms/Implementations:

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

Implementation

static Future<bool> isMultiProcessEnabled() =>
    PlatformInAppWebViewController.static().isMultiProcessEnabled();