setSettings method

Future<void> setSettings({
  1. required InAppBrowserClassSettings settings,
})

Sets the PlatformInAppBrowser settings with the new settings and evaluates them.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

Future<void> setSettings({required InAppBrowserClassSettings settings}) =>
    platform.setSettings(settings: settings);