GhosttyTerminalRenderSnapshot constructor

const GhosttyTerminalRenderSnapshot({
  1. required int cols,
  2. required int rows,
  3. required GhosttyRenderStateDirty dirty,
  4. required Color backgroundColor,
  5. required Color foregroundColor,
  6. required GhosttyTerminalRenderCursor cursor,
  7. required List<GhosttyTerminalRenderRow> rowsData,
})

Implementation

const GhosttyTerminalRenderSnapshot({
  required this.cols,
  required this.rows,
  required this.dirty,
  required this.backgroundColor,
  required this.foregroundColor,
  required this.cursor,
  required this.rowsData,
});