SetCommand constructor

SetCommand()

Implementation

SetCommand() {
  argParser.addOption(
    'key',
    allowed: supportedKeys.keys.toList(),
    help: 'key to set',
    mandatory: true,
  );
  argParser.addOption(
    'value',
    help: 'value to set',
    mandatory: true,
  );
}