copyWithWrapped method

LinkOAuthCorrelationIdExchangeResponse copyWithWrapped({
  1. Wrapped<String>? linkToken,
  2. Wrapped<String>? requestId,
})

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));
}