WhitespaceOptions constructor

const WhitespaceOptions({
  1. String chars = ' ',
  2. Color? foreground,
  3. Color? background,
})

Creates whitespace processing options.

chars specifies characters to cycle through when filling space. foreground and background apply optional styling.

Implementation

const WhitespaceOptions({this.chars = ' ', this.foreground, this.background});