ObsGetSceneItemLockedCommand constructor

ObsGetSceneItemLockedCommand()

Implementation

ObsGetSceneItemLockedCommand() {
  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',
    );
}