OnvifDebugCommand constructor

OnvifDebugCommand()

Implementation

OnvifDebugCommand() {
  argParser
    ..addOption(
      'output-folder',
      abbr: 'o',
      valueHelp: 'file path',
      help: 'destination folder for debug bundle',
      defaultsTo: 'debug',
    )
    ..addOption(
      'module',
      abbr: 'm',
      valueHelp: 'string',
      allowed: ['all', 'device', 'media1', 'media2', 'ptz'],
      defaultsTo: 'all',
      help: 'Token of the requested metadata configuration.',
    );
}