processorIdentityGetPost method

Future<Response<ProcessorIdentityGetResponse>> processorIdentityGetPost({
  1. required ProcessorIdentityGetRequest? body,
})

Retrieve Identity data

Implementation

Future<chopper.Response<ProcessorIdentityGetResponse>>
    processorIdentityGetPost({required ProcessorIdentityGetRequest? body}) {
  generatedMapping.putIfAbsent(ProcessorIdentityGetResponse,
      () => ProcessorIdentityGetResponse.fromJsonFactory);

  return _processorIdentityGetPost(body: body);
}