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