cellGetWidth method

int cellGetWidth(
  1. int index
)
override

Implementation

int cellGetWidth(int index) {
  if (index >= _maxCols) {
    return 1;
  }
  return _cells.getUint8(index * _cellSize + _cellWidth);
}