handleExpanded method
Handles convenience 'wrapExpanded' property.
Implementation
@protected
Widget handleExpanded(
BuildContext context, Widget widget, WidgetNodeSpec spec) {
if (parseBool(spec.props["wrapExpanded"])) {
widget = Expanded(child: widget);
}
return widget;
}