ListBufferLineData constructor

ListBufferLineData(
  1. int length,
  2. bool isWrapped
)

Implementation

ListBufferLineData(int length, this.isWrapped) {
  _maxCols = _nextLength(length);
  _cells = List.filled(_maxCols * _cellSize, 0);
}