SessionLoggerEventFilter constructor

const SessionLoggerEventFilter({
  1. Input<Map<String, dynamic>?>? all,
  2. Input<List<String>?>? includes,
})

Creates a new SessionLoggerEventFilter. all Block that specifies to monitor all events. Set to {} to monitor all events. includes List of specific events to monitor. Valid values include session events like SessionStart, SessionEnd, etc.

Implementation

const SessionLoggerEventFilter({
  this.all,
  this.includes,
});