scrollToBottom method
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.
}
}
Scrolls the viewport to the bottom (the latest output / prompt).
@override
void scrollToBottom() {
try {
_term.scrollToBottom();
} on Object {
// Harmless if the terminal isn't ready yet.
}
}