verticalScroll method

SingleChildScrollView verticalScroll({
  1. ScrollController? controller,
  2. ScrollPhysics? physics,
})

Implementation

SingleChildScrollView verticalScroll({ScrollController? controller, ScrollPhysics? physics}) {
  return SingleChildScrollView(controller: controller, scrollDirection: Axis.vertical, physics: physics, child: this);
}