launchSelphIDCapture method

Future<Either<Exception, SelphIdResult>> launchSelphIDCapture(
  1. {required String resourcesPath,
  2. required String license}
)

Implementation

Future<Either<Exception, SelphIdResult>> launchSelphIDCapture({
  required String resourcesPath,
  required String license,
}) async {
  return launchSelphIDCaptureWithConfiguration(
    resourcesPath: resourcesPath,
    license: license,
    configuration: createStandardConfiguration(),
  );
}