setupArgParser method
Sets up the argument parser with command-specific options
Implementation
@override
void setupArgParser() {
super.setupArgParser();
argParser
..addOption(
'application-id',
help: 'The bundle identifier on iOS or application id on Android. '
'(defaults to <org-name>.<project-name>)',
)
..addOption(
'description',
help: 'The description for this new project.',
aliases: ['desc'],
defaultsTo: _defaultDescription,
)
..addOption(
'cms',
help: 'The content management system for this new project.',
defaultsTo: defaultCMS,
)
..addOption(
'org-name',
help: 'The organization for this new project.',
defaultsTo: _defaultOrgName,
aliases: ['org'],
);
}