VideoData constructor

VideoData({
  1. String? id,
  2. CameraDetails? details,
  3. List<int>? frame,
  4. Version? version,
  5. String? imagePath,
})

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;
}