VideoInfo constructor

  1. @protected
VideoInfo({
  1. required int height,
  2. required int width,
  3. required int duration,
})

NOTE: For internal use only.

Implementation

@protected
VideoInfo({
  required this.height,
  required this.width,
  required this.duration,
});