getOptions method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(), IOSPlatform()])
  2. @Deprecated('Use getSettings instead')
Future<InAppBrowserClassOptions?> getOptions()

Use getSettings instead.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView

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

Implementation

@SupportedPlatforms(platforms: [AndroidPlatform(), IOSPlatform()])
@Deprecated('Use getSettings instead')
Future<InAppBrowserClassOptions?> getOptions() {
  throw UnimplementedError(
    'getOptions is not implemented on the current platform',
  );
}