OnvifMovePtzCommand constructor

OnvifMovePtzCommand()

Implementation

OnvifMovePtzCommand() {
  argParser
    ..addOption('profile-token',
        abbr: 't',
        valueHelp: 'token',
        mandatory: true,
        help:
            'The ProfileToken element indicates the media profile to use and will define the source and dimensions of the snapshot.')
    ..addOption('x',
        mandatory: true,
        valueHelp: 'double',
        help: 'The x component corresponds to pan.')
    ..addOption('y',
        mandatory: true,
        valueHelp: 'double',
        help: 'The y component corresponds to tilt.');
}