jumpToBottom method

void jumpToBottom()

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);
}