PrintfStyle constructor

const PrintfStyle({
  1. Color? foreground,
  2. Color? background,
  3. bool italic = false,
  4. bool bold = false,
  5. bool underline = false,
  6. bool invert = false,
  7. bool strike = false,
  8. bool doubleUnderline = false,
  9. bool framed = false,
})

Implementation

const PrintfStyle({
  this.foreground,
  this.background,
  this.italic = false,
  this.bold = false,
  this.underline = false,
  this.invert = false,
  this.strike = false,
  this.doubleUnderline = false,
  this.framed = false,
});