MediaInfo constructor

MediaInfo({
  1. required String? path,
  2. String? title,
  3. String? author,
  4. int? width,
  5. int? height,
  6. int? orientation,
  7. int? filesize,
  8. double? duration,
  9. bool? isCancel,
  10. File? file,
  11. double? frameRate,
  12. double? bitRate,
  13. int? sampleRate,
  14. int? channelCount,
  15. double? audioBitRate,
})

Implementation

MediaInfo({
  required this.path,
  this.title,
  this.author,
  this.width,
  this.height,
  this.orientation,
  this.filesize,
  this.duration,
  this.isCancel,
  this.file,
  this.frameRate,
  this.bitRate,
  this.sampleRate,
  this.channelCount,
  this.audioBitRate,
});