launchSelphIDTestCapture method

Future<Either<Exception, SelphIdResult>> launchSelphIDTestCapture(
  1. {required SelphIDOperation operationMode,
  2. required String resourcesPath,
  3. required String license,
  4. required String testImageName,
  5. required SelphIDTestType testType}
)

Implementation

Future<Either<Exception, SelphIdResult>> launchSelphIDTestCapture({
  required SelphIDOperation operationMode,
  required String resourcesPath,
  required String license,
  required String testImageName,
  required SelphIDTestType testType,
}) async {
  return launchSelphIDTestCaptureWithConfiguration(
    operationMode: operationMode,
    resourcesPath: resourcesPath,
    license: license,
    configuration: createStandardConfiguration(),
    testImageName: testImageName,
    testType: testType,
  );
}