VideoSize constructor

const VideoSize({
  1. required String type,
  2. required int w,
  3. required int h,
  4. required int size,
  5. double? videoStartTs,
})

Video Size constructor.

Implementation

const VideoSize({
  required this.type,
  required this.w,
  required this.h,
  required this.size,
  this.videoStartTs,
}) : super._();