setOptions method

  1. @Deprecated('Use setSettings instead')
Future<void> setOptions({
  1. required InAppWebViewGroupOptions options,
})

Use setSettings instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView
  • Web <iframe> but requires same origin
  • Windows WebView2

Parameters - Officially Supported Platforms/Implementations:

  • options: all platforms

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

Implementation

@Deprecated('Use setSettings instead')
Future<void> setOptions({required InAppWebViewGroupOptions options}) =>
    platform.setOptions(options: options);