width property

int width

Implementation

int get width => _width;
void width=(int newWidth)

Implementation

set width(int newWidth) {
  for (final cell in cells) {
    cell.width = '${newWidth}px';
  }
  _width = newWidth;
}