scrollToBottom method

  1. @override
void scrollToBottom()
override

Scrolls the viewport to the bottom (the latest output / prompt).

Implementation

@override
void scrollToBottom() {
  try {
    _term.scrollToBottom();
  } on Object {
    // Harmless if the terminal isn't ready yet.
  }
}