WindowsWebViewOptions constructor

const WindowsWebViewOptions({
  1. WebviewPopupWindowPolicy popupWindowPolicy = WebviewPopupWindowPolicy.deny,
  2. Color backgroundColor = Colors.transparent,
  3. void onUrlChanged(
    1. String
    )?,
  4. void onError(
    1. PlatformException
    )?,
  5. String? userDataPath,
  6. String? browserExePath,
  7. String? additionalArguments,
})

Implementation

const WindowsWebViewOptions({
  this.popupWindowPolicy = WebviewPopupWindowPolicy.deny,
  this.backgroundColor = Colors.transparent,
  this.onUrlChanged,
  this.onError,
  this.userDataPath,
  this.browserExePath,
  this.additionalArguments,
});