protectionService property
ContentProtectionService?
get
protectionService
Implementation
ContentProtectionService? get protectionService {
ContentProtectionService? contentProtectionService =
findService<ContentProtectionService>();
if (contentProtectionService != null) {
return contentProtectionService;
}
/* TODO: return links.firstWithMediaType(RouteHandler.ContentProtectionHandler.link.mediaType!!)?.let {
WebContentProtection(it)
} */
return null;
}