LoggerConf constructor

const LoggerConf({
  1. bool logRequest = true,
  2. void customLogger(
    1. String message,
    2. bool isError
    )?,
})

Implementation

const LoggerConf({
  this.logRequest = true,
  this.customLogger,
});