handleEvent static method
Handle continuous event
Implementation
static void handleEvent(Map<dynamic, dynamic> payload) {
// Check if this is an enrollment progress event
if (payload['type'] == 'progress') {
handleEnrollmentProgress(payload);
} else {
handleIdentificationEvent(payload);
}
}