copyWith method
Implementation
FoundWebApp copyWith({
WebApp? webApp,
bool? requestWriteAccess,
bool? skipConfirmation,
}) => FoundWebApp(
webApp: webApp ?? this.webApp,
requestWriteAccess: requestWriteAccess ?? this.requestWriteAccess,
skipConfirmation: skipConfirmation ?? this.skipConfirmation,
);