identityMatchPost method

Future<Response<IdentityMatchResponse>> identityMatchPost({
  1. required IdentityMatchRequest? body,
})

Retrieve identity match score

Implementation

Future<chopper.Response<IdentityMatchResponse>> identityMatchPost(
    {required IdentityMatchRequest? body}) {
  generatedMapping.putIfAbsent(
      IdentityMatchResponse, () => IdentityMatchResponse.fromJsonFactory);

  return _identityMatchPost(body: body);
}