ObsSetInputSettingsCommand constructor

ObsSetInputSettingsCommand()

Implementation

ObsSetInputSettingsCommand() {
  argParser
    ..addOption('inputName', help: 'Name of the input to set the settings of')
    ..addOption('inputUuid', help: 'UUID of the input to set the settings of')
    ..addOption(
      'inputSettings',
      help: 'Object of settings to apply',
      mandatory: true,
    )
    ..addOption('overlay',
        help:
            'True == apply the settings on top of existing ones, False == reset the input to its defaults, then apply settings.');
}