PlanCommand constructor
PlanCommand({
- PlanShowCommand? show,
- PlanDiscardCommand? discard,
Implementation
PlanCommand({PlanShowCommand? show, PlanDiscardCommand? discard}) {
addSubcommand(show ?? PlanShowCommand());
addSubcommand(discard ?? PlanDiscardCommand());
}