applicationGetPost abstract method

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

Retrieve information about a Plaid application

Implementation

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