scrollToBottom function
Scrolls viewport to the bottom.
- See scrollTo.
Implementation
void scrollToBottom({bool smooth = true, int? delayMs, Object? scrollable}) =>
scrollTo(window.scrollX, document.body!.scrollHeight,
smooth: smooth, delayMs: delayMs, scrollable: scrollable);