startFullIdentitySDK method

Future<BlusaltFullIdentityResultResponse?> startFullIdentitySDK({
  1. required String apiKey,
  2. required String appName,
  3. required String clientId,
  4. required bool isDev,
  5. String? webhookUrl,
  6. String? reference,
  7. LivenessFacialComparisonType livenessFacialComparisonType = LivenessFacialComparisonType.dynamic,
  8. bool showLivenessResult = true,
  9. List<DocumentType>? documentTypeList,
  10. int? timeoutDurationInSec,
  11. ThresholdConfig thresholdConfig = const ThresholdConfig(),
  12. bool enableEncryption = false,
  13. Map<String, dynamic>? metadata,
})

Implementation

Future<BlusaltFullIdentityResultResponse?> startFullIdentitySDK({
  required String apiKey,
  required String appName,
  required String clientId,
  required bool isDev,
  String? webhookUrl,
  String? reference,
  LivenessFacialComparisonType livenessFacialComparisonType =
      LivenessFacialComparisonType.dynamic,
  bool showLivenessResult = true,
  List<DocumentType>? documentTypeList,
  int? timeoutDurationInSec,
  ThresholdConfig thresholdConfig = const ThresholdConfig(),
  bool enableEncryption = false,
  Map<String, dynamic>? metadata,
}) async {
  return BlusaltFullIdentityResultResponse(
      blusaltFullIdentityProcess: BlusaltFullIdentityProcess.notImplemented,
      message: 'Not Implemented');
}