TerminalNativeCellDelta constructor

const TerminalNativeCellDelta({
  1. required int column,
  2. TerminalNativeCell? previous,
  3. TerminalNativeCell? current,
})

Creates a cell-delta record.

Implementation

const TerminalNativeCellDelta({
  required this.column,
  this.previous,
  this.current,
});