AsxEntry constructor

AsxEntry({
  1. String? title,
  2. required String link,
  3. String? author,
  4. EndMarker? endMarker,
  5. StartMarker? startMarker,
  6. String? moreInfo,
  7. String? abstract,
  8. String? duration,
  9. List<Param>? params,
  10. Banner? banner,
  11. String? baseURL,
  12. String? copyright,
  13. String? endTime,
  14. String? previewDuration,
  15. String? startTime,
})

Creates ASX entry that specifies media file.

Implementation

AsxEntry({
  this.title,
  required this.link,
  this.author,
  this.endMarker,
  this.startMarker,
  this.moreInfo,
  this.abstract,
  this.duration,
  this.params,
  this.banner,
  this.baseURL,
  this.copyright,
  this.endTime,
  this.previewDuration,
  this.startTime,
});