doSmartSelfieEnrollment method

Future<FlutterSmartSelfieResponse> doSmartSelfieEnrollment(
  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,
  9. bool? allowNewEnroll,
)

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