X5WebView constructor
const
X5WebView({
- Key? key,
- dynamic url,
- bool javaScriptEnabled = true,
- bool domStorageEnabled = true,
- X5WebViewCreatedCallback? onWebViewCreated,
- PageFinishedCallback? onPageFinished,
- ShowCustomViewCallback? onShowCustomView,
- HideCustomViewCallback? onHideCustomView,
- JavascriptChannels? javascriptChannels,
- ProgressChangedCallback? onProgressChanged,
- UrlLoading? onUrlLoading,
- Map<
String, String> ? header, - String? userAgentString,
Implementation
const X5WebView(
{Key? key,
this.url,
this.javaScriptEnabled = true,
this.domStorageEnabled = true,
this.onWebViewCreated,
this.onPageFinished,
this.onShowCustomView,
this.onHideCustomView,
this.javascriptChannels,
this.onProgressChanged,
this.onUrlLoading,
this.header,
this.userAgentString})
: super(key: key);