animateToPreviousSectionIndex method
dynamic
animateToPreviousSectionIndex({})
Implementation
animateToPreviousSectionIndex({
Duration duration = const Duration(milliseconds: 1000),
Curve curve = Curves.ease,
}) {
animateToSectionIndex(_lastAnimatedIndex - 1,
duration: duration, curve: curve);
}