getScrollControllerFor method
Get a ScrollController for the specified axis
.
Implementation
ScrollController? getScrollControllerFor({required Axis axis}) {
return axis == Axis.horizontal
? horizontalScrollController
: verticalScrollController;
}