startFacialComparisonSDK method

Future<BlusaltLivenessResultResponse?> startFacialComparisonSDK({
  1. required String apiKey,
  2. required String appName,
  3. required String clientId,
  4. required bool isDev,
  5. required Uint8List imageData,
  6. String? reference,
  7. String? webhookUrl,
  8. LivenessFacialComparisonType livenessFacialComparisonType = LivenessFacialComparisonType.motional,
  9. bool collectDeviceId = false,
  10. bool collectDeviceLocation = false,
  11. ThresholdPriority thresholdPriority = ThresholdPriority.localOnly,
  12. bool? startProcessOnGettingToFirstScreen,
  13. double? thresholdInPercent,
  14. bool? showScore,
  15. bool? showThreshold,
  16. int? timeoutDurationInSec,
})

Implementation

Future<BlusaltLivenessResultResponse?> startFacialComparisonSDK(
    {required String apiKey,
    required String appName,
    required String clientId,
    required bool isDev,
    required Uint8List imageData,
    String? reference,
    String? webhookUrl,
    LivenessFacialComparisonType livenessFacialComparisonType =
        LivenessFacialComparisonType.motional,
    bool collectDeviceId = false,
    bool collectDeviceLocation = false,
    ThresholdPriority thresholdPriority = ThresholdPriority.localOnly,
    bool? startProcessOnGettingToFirstScreen,
    double? thresholdInPercent,
    bool? showScore,
    bool? showThreshold,
    int? timeoutDurationInSec}) async {
  return BlusaltLivenessResultResponse(
      blusaltLivenessProcess: BlusaltLivenessProcess.notImplemented,
      message: 'Not Implemented');
}