CreateCommand constructor

CreateCommand()

Implementation

CreateCommand() {
  argParser.addOption(
    'template',
    allowed: const ['starter'],
    help: 'Generate a project from a preset template.',
  );
  argParser.addOption(
    'bundle-id',
    help: 'Bundle ID used for the generated Flutter project.',
  );
  argParser.addOption(
    'platforms',
    help:
        'Project targets to generate. Use mobile, desktop, web, or Flutter platforms.',
  );
}