scrollToBottom method

void scrollToBottom()

Implementation

void scrollToBottom() {
  if (scrollController.hasClients && flowchart.value) {
    followBottom.value = true;

    var scrollPosition = scrollController.position;
    scrollController.animateTo(
      scrollPosition.maxScrollExtent,
      duration: new Duration(milliseconds: 400),
      curve: Curves.easeOut,
    );
  }
}