processorAuthGetPost method

Future<Response<ProcessorAuthGetResponse>> processorAuthGetPost({
  1. required ProcessorAuthGetRequest? body,
})

Retrieve Auth data

Implementation

Future<chopper.Response<ProcessorAuthGetResponse>> processorAuthGetPost(
    {required ProcessorAuthGetRequest? body}) {
  generatedMapping.putIfAbsent(ProcessorAuthGetResponse,
      () => ProcessorAuthGetResponse.fromJsonFactory);

  return _processorAuthGetPost(body: body);
}