scrollToBottom method

dynamic scrollToBottom(
  1. ScrollController chatScrollController
)

Implementation

scrollToBottom(ScrollController chatScrollController ) {
  if (chatScrollController.positions.isNotEmpty) {
    chatScrollController.animateTo(
      chatScrollController.position.minScrollExtent,
      duration: const Duration(milliseconds: 300),
      curve: Curves.easeOut,
    );
  }

}