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