expanded method

Widget expanded({
  1. int flex = 1,
})

Wraps this widget with Expanded with optional flex.

Implementation

Widget expanded({int flex = 1}) => Expanded(flex: flex, child: this);