addAbove method

Widget addAbove(
  1. Widget widget
)

Implementation

Widget addAbove(Widget widget) {
  return Column(children: [widget, this]);
}