Logger constructor

Logger({
  1. required LogLevel logLevel,
  2. int maxWidth = 90,
  3. bool compact = true,
})

Implementation

Logger({
  required this.logLevel,
  this.maxWidth = 90,
  this.compact = true,
});