PowerProcessLauncher typedef

PowerProcessLauncher = Future<Process> Function(String executable, List<String> arguments)

Spawns a helper process; Process.start in production, a fake in tests.

Implementation

typedef PowerProcessLauncher =
    Future<Process> Function(String executable, List<String> arguments);