copyWithWrapped method
Implementation
LinkOAuthCorrelationIdExchangeResponse copyWithWrapped(
{Wrapped<String>? linkToken, Wrapped<String>? requestId}) {
return LinkOAuthCorrelationIdExchangeResponse(
linkToken: (linkToken != null ? linkToken.value : this.linkToken),
requestId: (requestId != null ? requestId.value : this.requestId));
}