AnsiStyle constructor

const AnsiStyle({
  1. Color? foreground,
  2. Color? background,
  3. bool bold = false,
  4. bool italic = false,
  5. bool underline = false,
  6. bool strikethrough = false,
  7. bool dim = false,
  8. bool inverse = false,
})

Implementation

const AnsiStyle({
  this.foreground,
  this.background,
  this.bold = false,
  this.italic = false,
  this.underline = false,
  this.strikethrough = false,
  this.dim = false,
  this.inverse = false,
});