getAutoScrollControllerFor method
Get a AutoScrollController for the specified axis.
Implementation
AutoScrollController? getAutoScrollControllerFor({required Axis axis}) {
return axis == Axis.horizontal
? horizontalAutoScrollController
: verticalAutoScrollController;
}