FormatOptions constructor
const
FormatOptions({
- int printWidth = 80,
- int tabWidth = 2,
- ProseWrap proseWrap = ProseWrap.preserve,
- UnorderedListStyle ulStyle = UnorderedListStyle.asterisk,
Creates formatting options with the specified values.
All parameters are optional and have sensible defaults:
Implementation
const FormatOptions({
this.printWidth = 80,
this.tabWidth = 2,
this.proseWrap = ProseWrap.preserve,
this.ulStyle = UnorderedListStyle.asterisk,
});