setWidth method
Implementation
void setWidth(int index, int width) {
_ensureCapacity(index);
final offset = index * _cellSize + _cellContent;
_data[offset] = (_data[offset] & CellContent.codepointMask) |
(width << CellContent.widthShift);
}