collapsedColumn method

Widget collapsedColumn(
  1. bool constrained
)

Implementation

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