CloudContextCommand constructor

CloudContextCommand({
  1. required CommandLogger logger,
})

Implementation

CloudContextCommand({required super.logger}) {
  addSubcommand(CloudContextListCommand(logger: logger));
  addSubcommand(CloudContextShowCommand(logger: logger));
  addSubcommand(CloudContextSetCommand(logger: logger));
  addSubcommand(CloudContextUnsetCommand(logger: logger));
}