videoCaptureMotionControl property

bool? 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;
void videoCaptureMotionControl=(bool? val)

Implementation

set videoCaptureMotionControl(bool? val) {
  _videoCaptureMotionControl = val;
  _set({"videoCaptureMotionControl": val});
}