flutter static method

Future<void> flutter(
  1. String command,
  2. List<String> args
)

Implementation

static Future<void> flutter(String command, List<String> args) async {
  await run('flutter', [command, ...args]);
}