VtRenderColors constructor

const VtRenderColors({
  1. required VtRgbColor background,
  2. required VtRgbColor foreground,
  3. required VtRgbColor? cursor,
  4. required List<VtRgbColor> palette,
})

Implementation

const VtRenderColors({
  required this.background,
  required this.foreground,
  required this.cursor,
  required this.palette,
});