boxWidth property
set
boxWidth
(int v)
Sets the width and marks the render object as needing layout.
Implementation
set boxWidth(int v) {
if (_boxWidth == v) return;
_boxWidth = v;
markNeedsLayout();
}