FirebaseAnalyticsLogStrategy constructor

FirebaseAnalyticsLogStrategy({
  1. LogLevel logLevel = LogLevel.none,
  2. List<LogEvent>? supportedEvents,
})

Constructs a FirebaseAnalyticsLogStrategy.

logLevel sets the log level at which this strategy becomes active, allowing for targeted logging based on severity. supportedEvents optionally specifies which types of LogEvent this strategy should handle, enhancing event filtering.

Implementation

FirebaseAnalyticsLogStrategy(
    {super.logLevel = LogLevel.none, super.supportedEvents});