expanded method

List<Widget> expanded()

Implementation

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