ProjectCommand constructor
ProjectCommand(
- Future<
CliContext> context()
Creates the command group.
Implementation
ProjectCommand(Future<CliContext> Function() context) {
addSubcommand(_ProjectCreateCommand(context));
addSubcommand(_ProjectListCommand(context));
addSubcommand(_ProjectDeleteCommand(context));
}