run static method

void run(
  1. String argument, {
  2. bool showLog = false,
})

Implementation

static void run(String argument, {bool showLog = false}) {
  String command = '${getCommandFlutter()} $argument';
  if (showLog) print(command);
  command.run;
}