run static method

Future<int> run(
  1. String argument, {
  2. bool showLog = false,
})

Implementation

static Future<int> run(String argument, {bool showLog = false}) async {
  String command = '${getCommandFlutter()} $argument';
  if (showLog) print(command);
  return command.run;
}