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