run method
Execute command and returns stdout
Implementation
Future<dynamic> run(
String command, {
dart_convert.Encoding? encoding,
String? workingDirectory,
Map<String, String>? environment,
bool includeParentEnvironment = true,
bool silent = false,
bool noPrompt = false,
bool returnCode = false,
}) async {
List<String> split = std_misc.splitCommandLine(command);
return run$(
split,
encoding: encoding,
workingDirectory: workingDirectory,
environment: environment,
silent: silent,
noPrompt: noPrompt,
returnCode: returnCode,
autoQuote: false,
);
}