wrapWithScroll method

Widget wrapWithScroll({
  1. Axis axis = Axis.vertical,
  2. bool reverse = false,
})

Implementation

Widget wrapWithScroll({Axis axis = Axis.vertical, bool reverse = false}) =>
    SingleChildScrollView(
      scrollDirection: axis,
      reverse: reverse,
      child: this,
    );