PublishedTrackInfo constructor

PublishedTrackInfo({
  1. String? codecMimeType,
  2. int? durationSeconds,
  3. String? trackType,
})

Returns a new PublishedTrackInfo instance.

Implementation

PublishedTrackInfo({
  this.codecMimeType,
  this.durationSeconds,
  this.trackType,
});