WingifyInitOptions constructor

WingifyInitOptions({
  1. required String sdkKey,
  2. required int accountId,
  3. Map<String, dynamic>? logger,
  4. Map<String, String>? gatewayService,
  5. int? pollInterval,
  6. int? cachedSettingsExpiryTime,
  7. dynamic integrations(
    1. Map<String, dynamic>
    )?,
  8. int batchMinSize = -1,
  9. int batchUploadTimeInterval = -1,
  10. bool isUsageStatsDisabled = false,
  11. bool? isAliasingEnabled = false,
})

Implementation

WingifyInitOptions({
  required this.sdkKey,
  required this.accountId,
  this.logger,
  this.gatewayService,
  this.pollInterval,
  this.cachedSettingsExpiryTime,
  this.integrations,
  this.batchMinSize = -1,
  this.batchUploadTimeInterval = -1,
  this.isUsageStatsDisabled = false,
  this.isAliasingEnabled = false,
});