AnalyticsSettings constructor

const AnalyticsSettings({
  1. required bool enabled,
  2. String? userId,
  3. Map<String, dynamic>? parameters,
  4. String? appId,
})

Implementation

const AnalyticsSettings({
  required this.enabled,
  this.userId,
  this.parameters,
  this.appId,
});