ZixflowConfig constructor

ZixflowConfig({
  1. required String apiKey,
  2. LogLevel? logLevel,
  3. bool? autoTrackDeviceAttributes,
  4. bool? trackApplicationLifecycleEvents,
  5. String? apiHost,
  6. String? cdnHost,
  7. int? flushAt,
  8. int? flushInterval,
  9. ScreenView? screenViewUse,
  10. InAppConfig? inAppConfig,
  11. PushConfig? pushConfig,
  12. LocationConfig? locationConfig,
})

Implementation

ZixflowConfig({
  required this.apiKey,
  this.logLevel,
  this.autoTrackDeviceAttributes,
  this.trackApplicationLifecycleEvents,
  this.apiHost,
  this.cdnHost,
  this.flushAt,
  this.flushInterval,
  this.screenViewUse,
  this.inAppConfig,
  PushConfig? pushConfig,
  this.locationConfig,
}) : pushConfig = pushConfig ?? PushConfig();