GridUpdate constructor
GridUpdate({
- required bool full,
- required int rows,
- required int columns,
- required List<
LineCells> lines, - required int cursorRow,
- required int cursorCol,
- required bool cursorVisible,
- int cursorShape = 0,
- bool cursorBlinking = false,
- int modeFlags = 0,
- int displayOffset = 0,
- int defaultFg = 0xD8D8D8,
- int defaultBg = 0x181818,
- int cursorColor = 0xFF000000,
- double scrollFraction = 0.0,
- LineCells? overscan,
Implementation
GridUpdate({
required this.full,
required this.rows,
required this.columns,
required this.lines,
required this.cursorRow,
required this.cursorCol,
required this.cursorVisible,
this.cursorShape = 0,
this.cursorBlinking = false,
this.modeFlags = 0,
this.displayOffset = 0,
this.defaultFg = 0xD8D8D8,
this.defaultBg = 0x181818,
this.cursorColor = 0xFF000000,
this.scrollFraction = 0.0,
this.overscan,
});