cellSetWidth method
Implementation
void cellSetWidth(int index, int width) {
final offset = index * _cellSize + _cellAttributes;
var result = _cells[offset];
result |= 0xFF << _cellWidth;
result &= width << _cellWidth;
_cells[offset] = result;
}