scrollToEnd method
dynamic
scrollToEnd()
Implementation
scrollToEnd() {
/*if (scrollController.hasClients) {
scrollController.animateTo(
scrollController.position.minScrollExtent,
duration: const Duration(milliseconds: 100),
curve: Curves.linear,
);
}*/
LogMessage.d("newScrollController", "scrollToEnd");
if (newScrollController != null && newScrollController!.isAttached) {
newScrollController?.jumpTo(index: 0);
}
// newScrollController.jumpTo(0);
showHideRedirectToLatest(false);
}