CreateCommand constructor

CreateCommand()

Implementation

CreateCommand() {
  argParser.addFlag(
    "riverpod",
    negatable: false,
    help: "Use Riverpod architecture",
  );

  argParser.addOption(
    "org",
    help: "Organization identifier (e.g. dev.kite)",
    defaultsTo: "dev.kite",
  );
}