scrollToBottom method
Implementation
Future<void> scrollToBottom() async {
TerminalScrollTrace.log(
'client',
'scrollToBottom before ${_gridPosSnapshot()}',
);
if (_rasterHotPath) {
_applyRasterFrame(await _raster!.scrollToBottomRaster());
} else {
_applyScrollUpdate(await _binding.scrollToBottom());
}
TerminalScrollTrace.log(
'client',
'scrollToBottom after ${_gridPosSnapshot()}',
);
}