UvStyle constructor

const UvStyle({
  1. UvColor? fg,
  2. UvColor? bg,
  3. UvColor? underlineColor,
  4. UnderlineStyle underline = UnderlineStyle.none,
  5. int attrs = 0,
})

Implementation

const UvStyle({
  this.fg,
  this.bg,
  this.underlineColor,
  this.underline = UnderlineStyle.none,
  this.attrs = 0,
});