EventDigester constructor

EventDigester({
  1. required String apiKey,
})

Initializes the EventDigester with the provided apiKey and projectId.

Implementation

EventDigester({
  required this.apiKey,
}) {
  _apiClient = ApiClient(apiKey: apiKey);

  Timer.periodic(const Duration(minutes: 15), (timer) {
    _digestCache();
  });
}