DrmSessionData constructor

const DrmSessionData({
  1. required String edgeName,
  2. required String token,
  3. required String ecdsaKey,
  4. required String drmServerUrl,
  5. String? fairplayDrmServerUrl,
  6. String? kid,
  7. String? certificateUrl,
  8. String? fairplayCertificateUrl,
  9. WatermarkConfig? watermark,
})

Implementation

const DrmSessionData({
  required this.edgeName,
  required this.token,
  required this.ecdsaKey,
  required this.drmServerUrl,
  this.fairplayDrmServerUrl,
  this.kid,
  this.certificateUrl,
  this.fairplayCertificateUrl,
  this.watermark,
});