VideoInfo constructor

VideoInfo({
  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. int? rotation,
})

Implementation

VideoInfo({
  required String path,
  this.title,
  this.author,
  int? width,
  int? height,
  int? orientation,
  int? filesize,
  this.duration,
  this.rotation,
}) : super(
        path: path,
        width: width,
        height: height,
        filesize: filesize,
      );