scrollToBottom method
void
scrollToBottom()
Implementation
void scrollToBottom() {
if (scrollController.hasClients) {
followBottom.value = true;
var scrollPosition = scrollController.position;
// scrollController.jumpTo(scrollPosition.maxScrollExtent);
scrollController.animateTo(
scrollPosition.maxScrollExtent,
duration: new Duration(milliseconds: 200),
curve: Curves.ease,
);
}
}