identityVerificationCreatePost method

Future<Response<IdentityVerificationCreateResponse>> identityVerificationCreatePost({
  1. required IdentityVerificationCreateRequest? body,
})

Create a new identity verification

Implementation

Future<chopper.Response<IdentityVerificationCreateResponse>>
    identityVerificationCreatePost(
        {required IdentityVerificationCreateRequest? body}) {
  generatedMapping.putIfAbsent(IdentityVerificationCreateResponse,
      () => IdentityVerificationCreateResponse.fromJsonFactory);

  return _identityVerificationCreatePost(body: body);
}