horizontalScroll method
Implementation
SingleChildScrollView horizontalScroll({ScrollController? controller, ScrollPhysics? physics}) {
return SingleChildScrollView(controller: controller, scrollDirection: Axis.horizontal, physics: physics, child: this);
}