Process typedef
Process =
Future<ProcessDetails> Function(String executable, List<String> arguments, {Map<String, String> ? environment, bool includeParentEnvironment, ProcessStartMode mode, bool runInShell, String? workingDirectory})
Implementation
typedef Process =
Future<ProcessDetails> Function(
String executable,
List<String> arguments, {
String? workingDirectory,
Map<String, String>? environment,
bool includeParentEnvironment,
bool runInShell,
io.ProcessStartMode mode,
});