CaptureAllFromCameraRequest constructor
CaptureAllFromCameraRequest({ - String? name,
- String? cameraName,
- bool? returnImage,
- bool? returnClassifications,
- bool? returnDetections,
- bool? returnObjectPointClouds,
})
Implementation
factory CaptureAllFromCameraRequest({
$core.String? name,
$core.String? cameraName,
$core.bool? returnImage,
$core.bool? returnClassifications,
$core.bool? returnDetections,
$core.bool? returnObjectPointClouds,
$43.Struct? extra,
}) {
final $result = create();
if (name != null) {
$result.name = name;
}
if (cameraName != null) {
$result.cameraName = cameraName;
}
if (returnImage != null) {
$result.returnImage = returnImage;
}
if (returnClassifications != null) {
$result.returnClassifications = returnClassifications;
}
if (returnDetections != null) {
$result.returnDetections = returnDetections;
}
if (returnObjectPointClouds != null) {
$result.returnObjectPointClouds = returnObjectPointClouds;
}
if (extra != null) {
$result.extra = extra;
}
return $result;
}