processorAuthGetPost abstract method

  1. @Post.new(path: '/processor/auth/get')
Future<Response<ProcessorAuthGetResponse>> processorAuthGetPost({
  1. @Body.new() required ProcessorAuthGetRequest? body,
})

Retrieve Auth data

Implementation

@Post(path: '/processor/auth/get')
Future<chopper.Response<ProcessorAuthGetResponse>> processorAuthGetPost(
    {@Body() required ProcessorAuthGetRequest? body});