ShowCommand constructor

ShowCommand()

Implementation

ShowCommand() {
  argParser.addOption(
    'key',
    allowed: supportedKeys.keys.toList(),
    help: 'key to show',
  );
  argParser.addFlag('all', abbr: 'a', help: 'show all keys');
}