Skip to content
On this page

Analytics

The SDK can collect usage analytics in order to improve the product. No sensitive user info or details are saved.

API

Dart
try {
    LicenseDetails licenseDetails = LicenseDetails("<ENTER_YOUR_LICENSE_KEY>");
    Session? session = await FaceSessionBuilder()  
        .withSessionInfoListener(this)
        .withVitalSignsListener(this)
        .withImageDataListener(this)
        .withAnalytics() 
        .build(licenseDetails);
} on HealthMonitorException catch(e) {
    print("Received Error. Domain: ${e.domain} Code: ${e.code}");
}