operator >> method

PipeableWidget<Widget?> operator >>(
  1. PipeableWidget<Widget?> widget
)

Place a widget in the child property.

Implementation

PipeableWidget operator >>(PipeableWidget widget) {
  _setWidget(widget);
  _setWidget = widget._setWidget;
  return this;
}