RasterRenderOptions constructor

const RasterRenderOptions({
  1. double fontSize = 14,
  2. int? cellWidth,
  3. int? cellHeight,
  4. int padding = 0,
  5. UvRgb foreground = const UvRgb(204, 204, 204),
  6. UvRgb background = const UvRgb(0, 0, 0),
  7. List<UvRgb>? palette,
  8. bool strict = true,
})

Creates a native terminal rendering profile.

Implementation

const RasterRenderOptions({
  this.fontSize = 14,
  this.cellWidth,
  this.cellHeight,
  this.padding = 0,
  this.foreground = const UvRgb(204, 204, 204),
  this.background = const UvRgb(0, 0, 0),
  this.palette,
  this.strict = true,
});