copyWith method
Implementation
LinkOAuthCorrelationIdExchangeRequest copyWith(
{String? clientId, String? secret, String? linkCorrelationId}) {
return LinkOAuthCorrelationIdExchangeRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
linkCorrelationId: linkCorrelationId ?? this.linkCorrelationId);
}