ByteDataBufferLineData constructor

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

Implementation

ByteDataBufferLineData(int length, this.isWrapped) {
  _maxCols = _nextLength(length);
  _cells = ByteData(_maxCols * _cellSize);
}