expanded function

Widget expanded(
  1. Widget widget
)

Implementation

Widget expanded(Widget widget) {
  return Expanded(child: widget);
}