lines property

IndexAwareCircularBuffer<BufferLine> lines
latefinal

lines of the buffer. the length of lines should always be equal or greater than viewHeight.

Implementation

late final lines = IndexAwareCircularBuffer<BufferLine>(
  max(maxLines, terminal.viewHeight),
);