scrollToTop method

void scrollToTop()

Implementation

void scrollToTop() {
  scrollController.animateTo(
    0.0,
    duration: const Duration(milliseconds: 500),
    curve: Curves.easeInOut,
  );
}