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