AdjustHelperConfig constructor

const AdjustHelperConfig({
  1. required String baseAddress,
  2. required String configKey,
  3. required String imagePath,
  4. required String adjustAppToken,
  5. bool adjustSandbox = false,
  6. int imageDownloadTimeoutSeconds = 10,
  7. int languageCheckTimeoutSeconds = 15,
  8. int pushTokenMaxAttempts = 10,
  9. int pushTokenRetryDelayMs = 500,
  10. int attributionTimeoutSeconds = 30,
  11. bool debugMode = false,
})

Implementation

const AdjustHelperConfig({
  required this.baseAddress,
  required this.configKey,
  required this.imagePath,
  required this.adjustAppToken,
  this.adjustSandbox = false,
  this.imageDownloadTimeoutSeconds = 10,
  this.languageCheckTimeoutSeconds = 15,
  this.pushTokenMaxAttempts = 10,
  this.pushTokenRetryDelayMs = 500,
  this.attributionTimeoutSeconds = 30,
  this.debugMode = false,
});