startExplorer method
- String distribution
Start Explorer
Implementation
void startExplorer(String distribution) async {
await Process.start(
'start', ['explorer.exe', getInstancePath(distribution).path],
mode: ProcessStartMode.normal, runInShell: true);
}