EnrollmentCallback typedef
EnrollmentCallback =
void Function({required String customId, String? descriptor, String? imagePath, required bool success})
Callback type for enrollment results
Implementation
typedef EnrollmentCallback = void Function({
required bool success,
required String customId,
String? descriptor,
String? imagePath,
});