EasyConfig constructor

EasyConfig({
  1. EasyLogHandler? logger,
  2. EasyLogLevel? logLevel,
  3. String? logTag,
  4. String? logFilePath,
  5. int? logFileBackup,
  6. int? logFileMaxBytes,
})

Implementation

EasyConfig({
  this.logger,
  this.logLevel,
  this.logTag,
  this.logFilePath,
  this.logFileBackup,
  this.logFileMaxBytes,
});