doSmartSelfieAuthentication method
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
);
}