AnalyticsOptions constructor

const AnalyticsOptions({
  1. bool? enableInteractionsAutocapture,
  2. bool? disablePageviewAutocapture,
  3. bool? disablePageviewTitleAutocapture,
  4. bool? disableInteractionAutocapture,
  5. bool? enablePushNotificationAutocapture,
  6. bool? enablePushNotificationTitleAutocapture,
  7. bool? enablePushNotificationBodyAutocapture,
  8. Uri? baseUrl,
  9. Duration? uploadInterval,
  10. bool? sessionReplayAutoStart,
})

Creates a new instance of AnalyticsOptions.

Implementation

const AnalyticsOptions({
  this.enableInteractionsAutocapture,
  this.disablePageviewAutocapture,
  this.disablePageviewTitleAutocapture,
  this.disableInteractionAutocapture,
  this.enablePushNotificationAutocapture,
  this.enablePushNotificationTitleAutocapture,
  this.enablePushNotificationBodyAutocapture,
  this.baseUrl,
  this.uploadInterval,
  this.sessionReplayAutoStart,
});