TrackInfo constructor

const TrackInfo(
  1. TrackType type, {
  2. bool? isHdr,
  3. String? format,
  4. String? language,
  5. String? title,
  6. Size? videoSize,
  7. double? frameRate,
  8. int? bitRate,
  9. int? channels,
  10. int? sampleRate,
})

Implementation

const TrackInfo(
  this.type, {
  this.isHdr,
  this.format,
  this.language,
  this.title,
  this.videoSize,
  this.frameRate,
  this.bitRate,
  this.channels,
  this.sampleRate,
});