flexed method

List<Widget> flexed()

Implementation

List<Widget> flexed() {
  return [for (final widget in this) Flexible(child: widget)];
}