ReleaseCommand constructor
ReleaseCommand(
- Future<
CliContext> context()
Creates the command group.
Implementation
ReleaseCommand(Future<CliContext> Function() context) {
addSubcommand(_ReleasePublishCommand(context));
addSubcommand(_ReleaseListCommand(context));
addSubcommand(_ReleaseLatestCommand(context));
addSubcommand(_ReleasePromoteCommand(context));
addSubcommand(_ReleaseYankCommand(context));
addSubcommand(_ReleaseDeleteCommand(context));
}