videoCaptureMotionControl property
bool?
get
videoCaptureMotionControl
If it's set to true
, camera frames won't be taken for recognition
while a device is moving based on motion sensors.
Default: true
.
Implementation
bool? get videoCaptureMotionControl => _videoCaptureMotionControl;
set
videoCaptureMotionControl
(bool? val)
Implementation
set videoCaptureMotionControl(bool? val) {
_videoCaptureMotionControl = val;
_set({"videoCaptureMotionControl": val});
}