withExpanded method

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

Implementation

Widget withExpanded({int flex = 1}) {
  return Expanded(flex: flex, child: this);
}