height property
set
height
(double v)
Implementation
set height(double v) {
final l = _latest;
if (l is SizedBox)
return _replace(
(w) => SizedBox(
width: l.width,
height: v,
child: w,
),
);
_add((w) => SizedBox(height: v, child: w));
}