Implementation
factory VideoData({
$core.String? id,
CameraDetails? details,
$core.List<$core.int>? frame,
$3.Version? version,
$core.String? imagePath,
$core.Iterable<$7.DetectedObject>? detectedObjects,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (details != null) {
$result.details = details;
}
if (frame != null) {
$result.frame = frame;
}
if (version != null) {
$result.version = version;
}
if (imagePath != null) {
$result.imagePath = imagePath;
}
if (detectedObjects != null) {
$result.detectedObjects.addAll(detectedObjects);
}
return $result;
}