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,
})

Implementation

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