VideoInfo constructor

const VideoInfo({
  1. String? platform,
  2. required String title,
  3. required String author,
  4. required String permlink,
  5. double? duration,
  6. int? filesize,
  7. String? file,
  8. String? lang,
  9. bool? firstUpload,
  10. String? ipfs,
  11. String? ipfsThumbnail,
  12. String? spritehash,
  13. String? snaphash,
})

Implementation

const VideoInfo({
  this.platform,
  required this.title,
  required this.author,
  required this.permlink,
  this.duration,
  this.filesize,
  this.file,
  this.lang,
  this.firstUpload,
  this.ipfs,
  this.ipfsThumbnail,
  this.spritehash,
  this.snaphash,
});