copyWithWrapped method
Implementation
LinkOAuthCorrelationIdExchangeRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? linkCorrelationId}) {
return LinkOAuthCorrelationIdExchangeRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
linkCorrelationId: (linkCorrelationId != null
? linkCorrelationId.value
: this.linkCorrelationId));
}