goDown method

void goDown()

Implementation

void goDown() {
  _currentPage = _pageController.page!.toInt() - 1;
  _pageController.animateToPage(
    _currentPage,
    duration: const Duration(milliseconds: 400),
    curve: Curves.easeInOut,
  );
}