queryEvents method

Future<List<EventRecord>> queryEvents(
  1. EventFilter filter
)

Queries historical events from the event log.

filter specifies the criteria for selecting events (channel, time range, event IDs, levels, etc.).

Returns a list of EventRecord objects matching the filter criteria.

Throws EventLogException if the query fails.

Implementation

Future<List<EventRecord>> queryEvents(EventFilter filter) {
  throw UnimplementedError('queryEvents() has not been implemented.');
}