AliMediaInfo constructor

AliMediaInfo({
  1. String? videoId,
  2. String? title,
  3. String? coverUrl,
  4. int? duration,
  5. String? mediaType,
  6. String? status,
  7. List? thumbnailList,
  8. int? totalBitrate,
  9. List<AliTrackInfo>? trackInfos,
})

Implementation

AliMediaInfo({
  this.videoId,
  this.title,
  this.coverUrl,
  this.duration,
  this.mediaType,
  this.status,
  this.thumbnailList,
  this.totalBitrate,
  this.trackInfos,
});