continuousMove method Null safety
- String profileToken,
- PtzPosition velocity,
- [int? timeout]
Operation for continuous Pan/Tilt and Zoom movements. The operation is supported if the PTZNode supports at least one continuous Pan/Tilt or Zoom space. If the space argument is omitted, the default space set by the PtzConfiguration will be used.
Implementation
Future<void> continuousMove(String profileToken, PtzPosition velocity,
[int? timeout]) async {
loggy.debug('continuousMove');
await Soap.retrieveEnvlope(
uri,
onvif.secureRequest(
SoapRequest.continuousMove(profileToken, velocity, timeout)));
}