InitParameters constructor

const InitParameters({
  1. required String obslyKey,
  2. required String instanceURL,
  3. String? remoteConfigURL,
  4. bool? proEnv,
  5. String? appVersion,
  6. String? appName,
  7. String? userId,
  8. String? release,
  9. LogLevel? logLevel,
  10. ObslyConfig? config,
  11. bool? debugMode,
  12. String? sessionID,
})

Implementation

const InitParameters({
  required this.obslyKey,
  required this.instanceURL,
  this.remoteConfigURL,
  this.proEnv,
  this.appVersion,
  this.appName,
  this.userId,
  this.release,
  this.logLevel,
  this.config,
  this.debugMode,
  this.sessionID,
});