applicationGet abstract method

  1. @Post(path: '/application/get')
Future<Response<ApplicationGetResponse>> applicationGet({
  1. @Body() @required ApplicationGetRequest? body,
})

Retrieve information about a Plaid application @param body

Implementation

@Post(path: '/application/get')
Future<chopper.Response<ApplicationGetResponse>> applicationGet(
    {@Body() @required ApplicationGetRequest? body});