copyWith method
Implementation
ChangeWebBrowserSettings copyWith({
bool? openExternalBrowser,
bool? displayCloseButton,
}) => ChangeWebBrowserSettings(
openExternalBrowser: openExternalBrowser ?? this.openExternalBrowser,
displayCloseButton: displayCloseButton ?? this.displayCloseButton,
);