expandedColumn method
Implementation
Widget expandedColumn(bool constrained) {
return _maybeColumn([
for (final w in this)
if (w.expandedHeight > 0)
if (constrained)
SizedBox(height: w.expandedHeight, child: w.child)
else
w.child,
]);
}