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