doSmartSelfieAuthentication method

Future<FlutterSmartSelfieResponse> doSmartSelfieAuthentication(
  1. String signature,
  2. String timestamp,
  3. String selfieImage,
  4. List<String> livenessImages,
  5. String userId,
  6. Map<String?, String?>? partnerParams,
  7. String? callbackUrl,
  8. int? sandboxResult,
)

Perform a synchronous SmartSelfie Authentication. The response will include the final result of the authentication.

Implementation

Future<FlutterSmartSelfieResponse> doSmartSelfieAuthentication(
    String signature,
    String timestamp,
    String selfieImage,
    List<String> livenessImages,
    String userId,
    Map<String?, String?>? partnerParams,
    String? callbackUrl,
    int? sandboxResult,
    ) {
  return platformInterface.doSmartSelfieAuthentication(
      signature,
      timestamp,
      selfieImage,
      livenessImages,
      userId,
      partnerParams,
      callbackUrl,
      sandboxResult
  );
}