scrollToEnd method

void scrollToEnd({
  1. bool? animate,
})

scrollBottom will move the scrollbar to the bottom (last item).

Implementation

void scrollToEnd({bool? animate}) {
  _scrollToPos(max, animate: animate);
}