LoggingConfiguration constructor

LoggingConfiguration({
  1. bool shouldLogNetworkInfo = false,
  2. bool printTime = true,
  3. ValueChanged<String>? onLog,
  4. bool isEnabled = true,
  5. Level loggingLevel = Level.trace,
})

Implementation

LoggingConfiguration({
  this.shouldLogNetworkInfo = false,
  this.printTime = true,
  this.onLog,
  this.isEnabled = true,
  this.loggingLevel = Level.trace,
});