FormatterConfig constructor

const FormatterConfig({
  1. int pageWidth = 80,
  2. bool formatStringMark = true,
  3. bool preferApostrophe = true,
  4. bool removeTrailingComma = true,
  5. bool removeSemicolon = true,
  6. String indent = ' ',
})

Implementation

const FormatterConfig(
    {this.pageWidth = 80,
    this.formatStringMark = true,
    this.preferApostrophe = true,
    this.removeTrailingComma = true,
    this.removeSemicolon = true,
    this.indent = '  '});