run static method
Implementation
static Future<ProcessResult> run(
String executable,
List<String> arguments, {
String? workingDirectory,
Map<String, String>? environment,
bool includeParentEnvironment = true,
bool runInShell = false,
Encoding? stdoutEncoding,
Encoding? stderrEncoding,
}) async {
return ProcessResult(0, -1, '', 'dart:io unavailable on web');
}