VideoInfo constructor

const VideoInfo({
  1. required int width,
  2. required int height,
  3. required Duration duration,
  4. required double frameRate,
  5. required String codec,
  6. required VideoContainer container,
  7. required int fileSize,
  8. required int audioChannels,
})

Implementation

const VideoInfo({
  required this.width,
  required this.height,
  required this.duration,
  required this.frameRate,
  required this.codec,
  required this.container,
  required this.fileSize,
  required this.audioChannels,
});