goUp method

void goUp()

Implementation

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