clearConsole static method

void clearConsole()

Clear the console (cross-platform)

Implementation

static void clearConsole() {
  if (Platform.isWindows) {
    Process.runSync('cls', <String>[], runInShell: true);
  } else {
    Process.runSync('clear', <String>[], runInShell: true);
  }
}