cufs 1.0.4
cufs: ^1.0.4 copied to clipboard
A CLI tool to generate the Ultimate Flutter Stack.
import 'package:cufs/cufs.dart' as cufs;
void main(List<String> arguments) {
// This is an example of how to run the CLI programmatically.
// In a real scenario, you would run this from the command line:
// $ cufs create my_app
print('Running CUFS example...');
cufs.run(['--help']);
}