getAutoScrollControllerFor method

AutoScrollController? getAutoScrollControllerFor({
  1. required Axis axis,
})

Get a AutoScrollController for the specified axis.

Implementation

AutoScrollController? getAutoScrollControllerFor({required Axis axis}) {
  return axis == Axis.horizontal
      ? horizontalAutoScrollController
      : verticalAutoScrollController;
}