Video constructor

Video({
  1. String? cameraMake,
  2. String? cameraModel,
  3. double? fps,
  4. String? status,
})

Implementation

Video({
  this.cameraMake,
  this.cameraModel,
  this.fps,
  this.status,
});