PrettyFormatter constructor

const PrettyFormatter({
  1. bool colors = true,
  2. int lineLength = 80,
  3. UnicodeBorderStyle borderStyle = UnicodeBorderStyle.light,
  4. int jsonIndent = 2,
  5. bool terseStackTracs = true,
})

Creates a new PrettyFormatter. The pretty formatter is focussed on increasing log readability

Implementation

const PrettyFormatter({
  this.colors = true,
  this.lineLength = 80,
  this.borderStyle = UnicodeBorderStyle.light,
  this.jsonIndent = 2,
  this.terseStackTracs = true,
});