WebBrowserSettings constructor

WebBrowserSettings({
  1. required bool openExternalBrowser,
  2. required List<WebDomainException> externalExceptions,
  3. required List<WebDomainException> inAppExceptions,
  4. required bool displayCloseButton,
})

Implementation

WebBrowserSettings({
  required this.openExternalBrowser,
  required this.externalExceptions,
  required this.inAppExceptions,
  required this.displayCloseButton,
});