VWOInitOptions constructor

VWOInitOptions({
  1. required String sdkKey,
  2. required int accountId,
  3. Map<String, String>? logger,
  4. Map<String, String>? gatewayService,
  5. int? pollInterval,
  6. int? cachedSettingsExpiryTime,
  7. dynamic integrationCallback(
    1. Map<String, dynamic>
    )?,
})

Implementation

VWOInitOptions({
  required this.sdkKey,
  required this.accountId,
  this.logger,
  this.gatewayService,
  this.pollInterval,
  this.cachedSettingsExpiryTime,
  this.integrationCallback,
});