scrollToBottom method

void scrollToBottom()

Implementation

void scrollToBottom() {
  log("scrollToBottom ");
  // scrollController!.animateTo(
  //   1000000,
  //   curve: Curves.easeOut,
  //   duration: const Duration(milliseconds: 500),
  // );
  scrollController?.jumpTo(0);
}