copyWith method
Implementation
LinkOAuthCorrelationIdExchangeResponse copyWith(
{String? linkToken, String? requestId}) {
return LinkOAuthCorrelationIdExchangeResponse(
linkToken: linkToken ?? this.linkToken,
requestId: requestId ?? this.requestId);
}