GhosttyTerminalStyle constructor

const GhosttyTerminalStyle({
  1. bool bold = false,
  2. bool faint = false,
  3. bool italic = false,
  4. GhosttySgrUnderline? underline,
  5. GhosttyTerminalColor? underlineColor,
  6. bool overline = false,
  7. bool blink = false,
  8. bool inverse = false,
  9. bool invisible = false,
  10. bool strikethrough = false,
  11. GhosttyTerminalColor? foreground,
  12. GhosttyTerminalColor? background,
  13. String? hyperlink,
})

Implementation

const GhosttyTerminalStyle({
  this.bold = false,
  this.faint = false,
  this.italic = false,
  this.underline,
  this.underlineColor,
  this.overline = false,
  this.blink = false,
  this.inverse = false,
  this.invisible = false,
  this.strikethrough = false,
  this.foreground,
  this.background,
  this.hyperlink,
});