runFlutter static method
Run flutter with the given args. Returns exit code.
Stdout/stderr are streamed live so you can see progress for long-running
commands like flutter build apk.
Implementation
static Future<int> runFlutter(List<String> args, {bool silent = false}) async {
return _run(_flutter, args, silent: silent);
}