scrollToOffset method

Future<void> scrollToOffset(
  1. double offsetLines
)

Absolute scroll offset in lines (0 = live bottom, historySize = top).

Implementation

Future<void> scrollToOffset(double offsetLines) async {
  cancelCoalescedScrollInput();
  await _awaitHistoryScrollIdle();
  await _client?.scrollToOffset(offsetLines);
}