jumpToBottom method
Jumps to the bottom of the logs.
Implementation
void jumpToBottom() {
if (!scrollController.hasClients) return;
scrollController.animateTo(0, duration: const Duration(milliseconds: 500), curve: Curves.easeOutBack);
}
Jumps to the bottom of the logs.
void jumpToBottom() {
if (!scrollController.hasClients) return;
scrollController.animateTo(0, duration: const Duration(milliseconds: 500), curve: Curves.easeOutBack);
}