run method

Future<ProcessResult> run(
  1. String command, {
  2. bool echoOutput = false,
  3. bool? throwOnError,
})

Implementation

Future<ProcessResult> run(
  String command, {
  bool echoOutput = false,
  bool? throwOnError,
}) {
  return runFlutter(
    command.split(' '),
    version: this,
    echoOutput: echoOutput,
    throwOnError: throwOnError,
  );
}