clearTerminal method

void clearTerminal()

Clears the terminal screen.

Implementation

void clearTerminal() {
  if (_disposed) throw StateError('Renderer is disposed');
  _bindings.clearTerminal(_ptr);
}