scrollDown method

void scrollDown(
  1. int rows
)

Scroll the terminal down by the specified number of rows.

Implementation

void scrollDown(int rows) => write(ansi.Term.scrollDown(rows));