ObsSetSceneItemLockedCommand constructor

ObsSetSceneItemLockedCommand()

Implementation

ObsSetSceneItemLockedCommand() {
  argParser
    ..addOption('scene-name',
        abbr: 'n',
        mandatory: true,
        valueHelp: 'string',
        help: 'Name of the scene the item is in')
    ..addOption(
      'scene-item-id',
      abbr: 'i',
      mandatory: true,
      valueHelp: 'int',
      help: 'Numeric ID of the scene item',
    )
    ..addFlag(
      'scene-item-locked',
      abbr: 'l',
      help: 'New lock state of the scene item',
    );
}