DefaultTrackingOptions constructor

const DefaultTrackingOptions({
  1. bool sessions = true,
  2. bool appLifecycles = false,
  3. bool deepLinks = false,
  4. bool attribution = true,
  5. bool pageViews = true,
  6. bool formInteractions = true,
  7. bool fileDownloads = true,
})

Implementation

const DefaultTrackingOptions({
  this.sessions = true,
  this.appLifecycles = false,
  // this.screenViews = false,
  this.deepLinks = false,
  this.attribution = true,
  this.pageViews = true,
  this.formInteractions = true,
  this.fileDownloads = true,
});