VideoInfo constructor

VideoInfo({
  1. FileInfo? thumbnailInfo,
  2. String? artist,
  3. String? title,
  4. int? duration,
  5. required int width,
  6. required int height,
})

Implementation

VideoInfo({
  this.thumbnailInfo,
  this.artist,
  this.title,
  this.duration,
  required this.width,
  required this.height,
});