GridUpdate constructor

GridUpdate({
  1. required bool full,
  2. required int rows,
  3. required int columns,
  4. required List<LineCells> lines,
  5. required int cursorRow,
  6. required int cursorCol,
  7. required bool cursorVisible,
  8. int cursorShape = 0,
  9. bool cursorBlinking = false,
  10. int modeFlags = 0,
  11. int displayOffset = 0,
  12. int historySize = 0,
  13. int defaultFg = 0xD8D8D8,
  14. int defaultBg = 0x181818,
  15. int cursorColor = 0xFF000000,
  16. double scrollFraction = 0.0,
  17. LineCells? overscan,
  18. int scrollLineDelta = 0,
})

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.historySize = 0,
  this.defaultFg = 0xD8D8D8,
  this.defaultBg = 0x181818,
  this.cursorColor = 0xFF000000,
  this.scrollFraction = 0.0,
  this.overscan,
  this.scrollLineDelta = 0,
});