PrettyConfig constructor

const PrettyConfig({
  1. bool blockEnabled = true,
  2. int lineLength = 80,
  3. bool disabledSuggestions = false,
  4. bool colorEnabled = true,
  5. bool emojiEnabled = true,
  6. String jsonIndent = ' ',
})

Implementation

const PrettyConfig({
  this.blockEnabled = true,
  this.lineLength = 80,
  this.disabledSuggestions = false,
  this.colorEnabled = true,
  this.emojiEnabled = true,
  this.jsonIndent = '  ',
});