clear method

void clear()

Fills the entire grid with empty cells.

Implementation

void clear() {
  for (int y = 0; y < terminal.height; y++) {
    _fillRow(y);
  }
}