VideoData constructor
Implementation
factory VideoData({
$core.String? id,
CameraDetails? details,
$core.List<$core.int>? frame,
$2.Version? version,
$core.String? imagePath,
}) {
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;
}
return $result;
}