EventDigester constructor
Initializes the EventDigester with the provided apiKey and projectId.
Implementation
EventDigester({
required this.apiKey,
this.appVersion,
this.enableIpTracking = true,
}) {
_apiClient = ApiClient(apiKey: apiKey);
Timer.periodic(const Duration(minutes: 15), (timer) {
_digestCache();
});
}