startExplorer method

void startExplorer(
  1. String distribution
)

Start Explorer

Implementation

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