VtStyle constructor

const VtStyle({
  1. required VtStyleColor foreground,
  2. required VtStyleColor background,
  3. required VtStyleColor underlineColor,
  4. required bool bold,
  5. required bool italic,
  6. required bool faint,
  7. required bool blink,
  8. required bool inverse,
  9. required bool invisible,
  10. required bool strikethrough,
  11. required bool overline,
  12. required GhosttySgrUnderline underline,
})

Implementation

const VtStyle({
  required this.foreground,
  required this.background,
  required this.underlineColor,
  required this.bold,
  required this.italic,
  required this.faint,
  required this.blink,
  required this.inverse,
  required this.invisible,
  required this.strikethrough,
  required this.overline,
  required this.underline,
});