scrollToOffset method
Absolute scroll offset in lines (0 = live bottom, historySize = top).
Implementation
Future<void> scrollToOffset(double offsetLines) async {
cancelCoalescedScrollInput();
await _awaitHistoryScrollIdle();
await _client?.scrollToOffset(offsetLines);
}