VideoData constructor

VideoData({
  1. required String? path,
  2. String? title,
  3. String? author,
  4. String? mimetype,
  5. String? date,
  6. String? location,
  7. double? framerate,
  8. int? width,
  9. int? height,
  10. int? orientation,
  11. int? filesize,
  12. double? duration,
})

Implementation

VideoData({
  required this.path,
  this.title,
  this.author,
  this.mimetype,
  this.date,
  this.location,
  this.framerate,
  this.width,
  this.height,
  this.orientation,
  this.filesize,
  this.duration,
});