doSmartSelfieEnrollment method
Perform a synchronous SmartSelfie Enrollment. The response will include the final result of the enrollment.
Implementation
Future<FlutterSmartSelfieResponse> doSmartSelfieEnrollment(
String signature,
String timestamp,
String selfieImage,
List<String> livenessImages,
String userId,
Map<String?, String?>? partnerParams,
String? callbackUrl,
int? sandboxResult,
bool? allowNewEnroll
) {
return platformInterface.doSmartSelfieEnrollment(
signature,
timestamp,
selfieImage,
livenessImages,
userId,
partnerParams,
callbackUrl,
sandboxResult,
allowNewEnroll
);
}