updateSettings method

Future<void> updateSettings(
  1. WebSettings setting
)

Updates the webview settings.

Any non null field in settings will be set as the new setting value. All null fields in settings are ignored.

Implementation

Future<void> updateSettings(WebSettings setting) {
  throw UnimplementedError(
      "WebView updateSettings is not implemented on the current platform");
}