scrollToBottom method

void scrollToBottom()

Scrolls to the bottom of the list. (Experimental feature - no smooth animation)

Implementation

void scrollToBottom() {
  _shouldScrollToBottom = true;
  notifyListeners();
  _shouldScrollToBottom = false;
}