operator >>> method

Widget operator >>>(
  1. Widget widget
)

Place a widget in the child property.

Implementation

Widget operator >>>(Widget widget) {
  _setWidget(widget);
  return this;
}