setOptions method

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

Use setSettings instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView

Parameters - Officially Supported Platforms/Implementations:

  • options: all platforms

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

Implementation

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