Style constructor
const
Style({
- Color? fg,
- Color? bg,
- RgbColor? fgRgb,
- RgbColor? bgRgb,
- IndexedColor? fgIndexed,
- IndexedColor? bgIndexed,
- Modifier addModifier = Modifier.none,
- Modifier subModifier = Modifier.none,
Implementation
const Style({
this.fg,
this.bg,
this.fgRgb,
this.bgRgb,
this.fgIndexed,
this.bgIndexed,
this.addModifier = Modifier.none,
this.subModifier = Modifier.none,
});