VideoFormat constructor

VideoFormat({
  1. String? fileType,
  2. int? id,
  3. String? kind,
  4. Size? resolution,
  5. int? targetBitRate,
})

Implementation

VideoFormat({
  this.fileType,
  this.id,
  this.kind,
  this.resolution,
  this.targetBitRate,
});