addBelow method

Widget addBelow(
  1. Widget? widget
)

Implementation

Widget addBelow(Widget? widget) {
  if (widget == null) {
    return this;
  }
  return Column(children: [this, widget]);
}