CreateCommand constructor

CreateCommand()

Implementation

CreateCommand() {
  const starterGitUrl = 'https://github.com/dartarcade/start.git';
  argParser.addOption(
    _gitUrl,
    abbr: 'g',
    help: 'Git URL to clone from',
    defaultsTo: starterGitUrl,
  );
}