PlanCommand constructor

PlanCommand({
  1. PlanShowCommand? show,
  2. PlanDiscardCommand? discard,
})

Implementation

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