width property

int get width

The display width of this cell in terminal columns.

Implementation

int get width => _width;
set width (int value)

Implementation

set width(int value) {
  _width = value;
  _updatePackedContent();
}