NanoafConfig constructor

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

Implementation

const NanoafConfig({
  required this.baseAddress,
  required this.configKey,
  required this.imagePath,
  required this.appsFlyerDevKey,
  required this.appsFlyerAppId,
  this.imageDownloadTimeoutSeconds = 10,
  this.languageCheckTimeoutSeconds = 15,
  this.pushTokenMaxAttempts = 10,
  this.pushTokenRetryDelayMs = 500,
  this.conversionDataTimeoutSeconds = 30,
  this.debugMode = false,
});