CreateProjectCommand constructor
CreateProjectCommand()
Implementation
CreateProjectCommand() {
argParser.addOption(
'projectName',
help: 'Name of the new project',
valueHelp: 'my_dream_project',
);
argParser.addOption(
'bundleId',
help: 'IOS Bundle Id of the new project',
valueHelp: 'sa.bond.com',
);
argParser.addOption(
'applicationId',
help: 'Android Application Id of the new project',
valueHelp: 'sa.bond.com',
);
}