LaunchOptions constructor

const LaunchOptions({
  1. PreferredLaunchMode mode = PreferredLaunchMode.platformDefault,
  2. InAppWebViewConfiguration webViewConfiguration = const InAppWebViewConfiguration(),
  3. InAppBrowserConfiguration browserConfiguration = const InAppBrowserConfiguration(),
  4. String? webOnlyWindowName,
})

Creates a new parameter object with the given options.

Implementation

const LaunchOptions({
  this.mode = PreferredLaunchMode.platformDefault,
  this.webViewConfiguration = const InAppWebViewConfiguration(),
  this.browserConfiguration = const InAppBrowserConfiguration(),
  this.webOnlyWindowName,
});