Style constructor

const Style({
  1. Color? fg,
  2. Color? bg,
  3. bool bold = false,
  4. bool italic = false,
  5. bool underline = false,
  6. bool dim = false,
  7. bool reverse = false,
  8. bool strikethrough = false,
})

Implementation

const Style({
  this.fg,
  this.bg,
  this.bold = false,
  this.italic = false,
  this.underline = false,
  this.dim = false,
  this.reverse = false,
  this.strikethrough = false,
});