verticalAxisDirection property
The direction in which the verticalOffset increases.
For example, if the axis direction is AxisDirection.down, a scroll offset of zero is at the top the viewport and increases towards the bottom of the viewport.
Implementation
AxisDirection get verticalAxisDirection => _verticalAxisDirection;
Implementation
set verticalAxisDirection(AxisDirection value) {
if (_verticalAxisDirection == value) {
return;
}
_verticalAxisDirection = value;
markNeedsLayout();
}