OnvifAbsoluteMovePtzCommand constructor

OnvifAbsoluteMovePtzCommand()

Implementation

OnvifAbsoluteMovePtzCommand() {
  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('pan-tilt-x',
        valueHelp: 'double',
        help:
            'A Position vector specifying the absolute target position x-axis.')
    ..addOption('pan-tilt-y',
        valueHelp: 'double',
        help:
            'A Position vector specifying the absolute target position y-axis.')
    ..addOption('pan-tilt-zoom',
        valueHelp: 'double',
        help:
            'A Position vector specifying the absolute target position zoom.');
}