run abstract method

Future<ExecResult> run(
  1. String executable,
  2. List<String> args, {
  3. Map<String, String>? environment,
})

Runs executable with args, returning the captured result.

Implementation

Future<ExecResult> run(
  String executable,
  List<String> args, {
  Map<String, String>? environment,
});