updateFollowBottom method

void updateFollowBottom()

Implementation

void updateFollowBottom() {
  if (scrollController.hasClients) {
    var scrolledToBottom =
        scrollController.offset >= scrollController.position.maxScrollExtent;
    followBottom.value = scrolledToBottom;
  }
}