VideoInfo constructor

const VideoInfo({
  1. required String url,
  2. required String title,
  3. required String imageUrl,
  4. String? resolution,
  5. String? duration,
  6. required int size,
  7. required String type,
})

Implementation

const VideoInfo({
  required this.url,
  required this.title,
  required this.imageUrl,
  this.resolution,
  this.duration,
  required this.size,
  required this.type,
});