setSettings method

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

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

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Web

Implementation

Future<void> setSettings({required InAppWebViewSettings settings}) {
  throw UnimplementedError(
      'setSettings is not implemented on the current platform');
}