copyWith method

LinkOAuthCorrelationIdExchangeRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? linkCorrelationId,
})

Implementation

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