copyWith method

LinkOAuthCorrelationIdExchangeResponse copyWith({
  1. String? linkToken,
  2. String? requestId,
})

Implementation

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