LogConfig constructor

LogConfig({
  1. String fileName = "nexora_log.csv",
  2. bool includeSensors = true,
  3. bool includeGPS = true,
  4. int intervalMs = 100,
})

Implementation

LogConfig({
  this.fileName = "nexora_log.csv",
  this.includeSensors = true,
  this.includeGPS = true,
  this.intervalMs = 100,
});