ConsoleTextStyle constructor

ConsoleTextStyle({
  1. ConsoleColor? color,
  2. ConsoleColor? backgroundColor,
  3. bool? bold,
  4. bool? italic,
  5. bool? underline,
  6. bool? faint,
  7. bool? blink,
  8. bool? blinkRapid,
  9. bool? inverse,
  10. bool? hide,
  11. bool? strikeThrough,
  12. bool? overline,
  13. Set<SGRParameter> customEnable = const {},
  14. Set<SGRParameter> customDisable = const {},
})

Implementation

ConsoleTextStyle({
  this.color,
  this.backgroundColor,
  this.bold,
  this.italic,
  this.underline,
  this.faint,
  this.blink,
  this.blinkRapid,
  this.inverse,
  this.hide,
  this.strikeThrough,
  this.overline,
  this.customEnable = const {},
  this.customDisable = const {},
});