LogParams constructor

LogParams({
  1. bool? debugLog = false,
  2. bool? saveDataLog = false,
  3. String? dataLogPath,
  4. int? dataLogSize = 1024,
  5. String? rawAudioPath,
})

Implementation

LogParams({
  this.debugLog = false,
  this.saveDataLog = false,
  this.dataLogPath,
  this.dataLogSize = 1024,
  this.rawAudioPath,
});