startLivenessDetectionOnlySDK method

Future<BlusaltLivenessResultResponse?> startLivenessDetectionOnlySDK({
  1. required String apiKey,
  2. required String appName,
  3. required String clientId,
  4. required bool isDev,
  5. String? webhookUrl,
  6. String? reference,
  7. LivenessDetectionOnlyType livenessDetectionOnlyType = LivenessDetectionOnlyType.motional,
  8. bool collectDeviceId = false,
  9. bool collectDeviceLocation = false,
  10. bool? startProcessOnGettingToFirstScreen,
  11. int? timeoutDurationInSec,
})

Implementation

Future<BlusaltLivenessResultResponse?> startLivenessDetectionOnlySDK(
    {required String apiKey,
    required String appName,
    required String clientId,
    required bool isDev,
    String? webhookUrl,
    String? reference,
    LivenessDetectionOnlyType livenessDetectionOnlyType =
        LivenessDetectionOnlyType.motional,
    bool collectDeviceId = false,
    bool collectDeviceLocation = false,
    bool? startProcessOnGettingToFirstScreen,
    int? timeoutDurationInSec}) async {
  return BlusaltLivenessResultResponse(
      blusaltLivenessProcess: BlusaltLivenessProcess.notImplemented,
      message: 'Not Implemented');
}