ResetCommand constructor

ResetCommand()

Implementation

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