ObsBrowserEventCommand constructor

ObsBrowserEventCommand()

Implementation

ObsBrowserEventCommand() {
  argParser
    ..addOption(
      'event-name',
      mandatory: true,
      valueHelp: 'string',
      help: 'Name of the vendor to use',
    )
    ..addOption(
      'event-data',
      valueHelp: 'json',
      help: 'JSON encoded object containing appropriate event data',
    );
}