PrintColorStyle constructor

const PrintColorStyle({
  1. Color? background,
  2. bool bold = false,
  3. Color foreground = Colors.blue,
  4. bool italic = false,
  5. String prefix = "",
  6. bool underline = false,
})

Implementation

const PrintColorStyle({
  this.background,
  this.bold = false,
  this.foreground = Colors.blue,
  this.italic = false,
  this.prefix = "",
  this.underline = false,
});