SdkConfiguration constructor

SdkConfiguration({
  1. required String licenseKey,
  2. bool loggingEnabled = false,
  3. bool enableNativeLogging = false,
  4. String? storageBaseDirectory = null,
  5. FileEncryptionMode? fileEncryptionMode = null,
  6. String? fileEncryptionPassword = null,
  7. bool performanceHintApi = true,
  8. bool allowGpuAcceleration = true,
  9. bool allowXnnpackAcceleration = true,
})

Implementation

SdkConfiguration({
  required this.licenseKey,
  this.loggingEnabled = false,
  this.enableNativeLogging = false,
  this.storageBaseDirectory = null,
  this.fileEncryptionMode = null,
  this.fileEncryptionPassword = null,
  this.performanceHintApi = true,
  this.allowGpuAcceleration = true,
  this.allowXnnpackAcceleration = true,
});