applicationGetPost method
Future<Response<ApplicationGetResponse> >
applicationGetPost({
- required ApplicationGetRequest? body,
Retrieve information about a Plaid application
Implementation
Future<chopper.Response<ApplicationGetResponse>> applicationGetPost(
{required ApplicationGetRequest? body}) {
generatedMapping.putIfAbsent(
ApplicationGetResponse, () => ApplicationGetResponse.fromJsonFactory);
return _applicationGetPost(body: body);
}