exec abstract method

Future<WsExecResult> exec(
  1. String command, {
  2. String? cwd,
})

Runs command once and returns its captured output (used for git). cwd defaults to rootPath.

Implementation

Future<WsExecResult> exec(String command, {String? cwd});