scrollDown method

void scrollDown()

Implementation

void scrollDown() {
  scrollController.animateTo(
    0.0,
    curve: Curves.easeOut,
    duration: const Duration(milliseconds: 300),
  );
}