InAppWebViewConfiguration constructor

const InAppWebViewConfiguration({
  1. bool enableJavaScript = true,
  2. bool enableDomStorage = true,
  3. Map<String, String> headers = const <String, String>{},
})

Creates a new WebViewConfiguration with the given settings.

Implementation

const InAppWebViewConfiguration({
  this.enableJavaScript = true,
  this.enableDomStorage = true,
  this.headers = const <String, String>{},
});