DefaultTrackingOptions.all constructor
DefaultTrackingOptions.all()
Enable all default tracking options.
Notice that different platforms have different default events.
Implementation
factory DefaultTrackingOptions.all() {
return const DefaultTrackingOptions(
sessions: true,
appLifecycles: true,
// screenViews: true,
deepLinks: true,
attribution: true,
pageViews: true,
formInteractions: true,
fileDownloads: true,
);
}