flutter_compile 0.0.2+2 flutter_compile: ^0.0.2+2 copied to clipboard
A Dart CLI to simplify the setting up your flutter framework development environment and automates the steps you need to configure your computer.
import 'dart:io';
void main() async {
await Process.run('dart', ['pub', 'global', 'activate', 'flutter_compile']);
var result = await Process.run('flutter_compile', ['--help']);
print(result.stdout);
await Future.wait([
stdout.close(),
stderr.close(),
]);
exit(0);
}