copyWith method
WebBrowserSettings
copyWith({
- bool? openExternalBrowser,
- List<
WebDomainException> ? externalExceptions, - List<
WebDomainException> ? inAppExceptions, - bool? displayCloseButton,
Implementation
WebBrowserSettings copyWith({
bool? openExternalBrowser,
List<WebDomainException>? externalExceptions,
List<WebDomainException>? inAppExceptions,
bool? displayCloseButton,
}) => WebBrowserSettings(
openExternalBrowser: openExternalBrowser ?? this.openExternalBrowser,
externalExceptions: externalExceptions ?? this.externalExceptions,
inAppExceptions: inAppExceptions ?? this.inAppExceptions,
displayCloseButton: displayCloseButton ?? this.displayCloseButton,
);