Format constructor

Format({
  1. String? filename,
  2. int? nbStreams,
  3. int? nbPrograms,
  4. String? formatName,
  5. String? formatLongName,
  6. Duration? startTime,
  7. Duration? duration,
  8. String? size,
  9. String? bitRate,
  10. int? probeScore,
  11. Tags? tags,
})

Implementation

Format({
  this.filename,
  this.nbStreams,
  this.nbPrograms,
  this.formatName,
  this.formatLongName,
  this.startTime,
  this.duration,
  this.size,
  this.bitRate,
  this.probeScore,
  this.tags,
});