ProjectCommand constructor

ProjectCommand(
  1. Future<CliContext> context()
)

Creates the command group.

Implementation

ProjectCommand(Future<CliContext> Function() context) {
  addSubcommand(_ProjectCreateCommand(context));
  addSubcommand(_ProjectListCommand(context));
  addSubcommand(_ProjectDeleteCommand(context));
}