FirebaseAnalyticsLogStrategy constructor
FirebaseAnalyticsLogStrategy({})
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.
useIsolate whether to use isolates for context serialization.
Defaults to TRUE because context can contain heavy data.
Implementation
FirebaseAnalyticsLogStrategy({
super.logLevel = LogLevel.none,
super.supportedEvents,
bool useIsolate = true, // Default: TRUE (context serialization can be heavy)
}) : super(useIsolate: useIsolate);