toExpanded method

Widget toExpanded([
  1. bool? tight
])

Implementation

Widget toExpanded([bool? tight]) => tight ?? true ? Expanded(child: this) : Flexible(child: this);