ByteArkPlayerItem constructor

ByteArkPlayerItem({
  1. String? mediaId,
  2. String? posterImage,
  3. String? title,
  4. String? subtitle,
  5. required String? url,
  6. String? shareUrl,
  7. ByteArkDrm? drm,
})

Constructor for creating a ByteArkPlayerItem.

Implementation

ByteArkPlayerItem({
  this.mediaId,
  this.posterImage,
  this.title,
  this.subtitle,
  required this.url,
  this.shareUrl,
  this.drm,
});