shutdown method

Future<String> shutdown()

Shutdown WSL

Implementation

Future<String> shutdown() async {
  ProcessResult results = await Process.run('wsl', ['--shutdown']);
  return results.stdout;
}