cellGetWidth method

int cellGetWidth(
  1. int index
)
override

Implementation

int cellGetWidth(int index) {
  if (index >= _maxCols) return 0;
  final offset = index * _cellSize + _cellAttributes;
  return (_cells[offset] >> _cellWidth) & 0xFF;
}