LogConfig constructor

const LogConfig({
  1. int? methodCount,
  2. int? lineLength,
  3. bool? printTitle,
  4. AnsiColor? color,
  5. bool? autoWrap,
  6. List<String>? excludePaths,
})

Implementation

const LogConfig({
  this.methodCount,
  this.lineLength,
  this.printTitle,
  this.color,
  this.autoWrap,
  this.excludePaths,
});