getDocumentVerificationJobStatus method

Future<FlutterDocumentVerificationJobStatusResponse> getDocumentVerificationJobStatus(
  1. FlutterJobStatusRequest request
)

Fetches the status of a Job. This can be used to check if a Job is complete, and if so, whether it was successful. This should be called when the Job is known to be a Document Verification.

Implementation

Future<FlutterDocumentVerificationJobStatusResponse> getDocumentVerificationJobStatus(
    FlutterJobStatusRequest request) {
  return platformInterface.getDocumentVerificationJobStatus(request);
}