fingerprint property

List<String>? fingerprint
final

Used to deduplicate events by grouping ones with the same fingerprint together.

If not specified a default deduplication fingerprint is used. The default fingerprint may be supplemented by additional fingerprints by specifying multiple values. The default fingerprint can be specified by adding defaultFingerprint to the list in addition to your custom values.

Examples:

// A completely custom fingerprint:
var custom = ['foo', 'bar', 'baz'];
// A fingerprint that supplements the default one with value 'foo':
var supplemented = [SentryEvent.defaultFingerprint, 'foo'];

Implementation

final List<String>? fingerprint;