linkOauthCorrelationIdExchangePost method

Future<Response<LinkOAuthCorrelationIdExchangeResponse>> linkOauthCorrelationIdExchangePost({
  1. required LinkOAuthCorrelationIdExchangeRequest? body,
})

Exchange the Link Correlation Id for a Link Token

Implementation

Future<chopper.Response<LinkOAuthCorrelationIdExchangeResponse>>
    linkOauthCorrelationIdExchangePost(
        {required LinkOAuthCorrelationIdExchangeRequest? body}) {
  generatedMapping.putIfAbsent(LinkOAuthCorrelationIdExchangeResponse,
      () => LinkOAuthCorrelationIdExchangeResponse.fromJsonFactory);

  return _linkOauthCorrelationIdExchangePost(body: body);
}