scrollToTop method

Future<void> scrollToTop()

Implementation

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