scrollToBottom method

Future<void> scrollToBottom()

Implementation

Future<void> scrollToBottom() async {
  TerminalScrollTrace.log(
    'client',
    'scrollToBottom before ${_gridPosSnapshot()}',
  );
  _applyScrollUpdate(await _binding.scrollToBottom());
  TerminalScrollTrace.log(
    'client',
    'scrollToBottom after ${_gridPosSnapshot()}',
  );
}