EnvOptions constructor

EnvOptions({
  1. required String appID,
  2. String? appName,
  3. String? appChannel,
  4. String? appVersion,
  5. String? deviceID,
  6. String? userUniqueId,
  7. bool? useImageXCloudControl = false,
  8. bool? openAppLog = true,
  9. bool? autoStartAppLog = true,
  10. bool? enableLogCallback = false,
  11. bool? enableLocalLogPrint = false,
  12. bool? debugLogLevel = false,
})

Implementation

EnvOptions({
  required this.appID,
  this.appName,
  this.appChannel,
  this.appVersion,
  this.deviceID,
  this.userUniqueId,
  this.useImageXCloudControl = false,
  this.openAppLog = true,
  this.autoStartAppLog = true,
  this.enableLogCallback = false,
  this.enableLocalLogPrint = false,
  this.debugLogLevel = false,
});