Wraps this widget with Expanded if condition is true, otherwise returns this widget.
condition
true
Widget expandedIf(bool condition, {int flex = 1}) => condition ? Expanded(flex: flex, child: this) : this;