DashConfiguration.fromJson constructor
Implementation
factory DashConfiguration.fromJson(Map<String, dynamic> json) {
return DashConfiguration(
manifestEndpointPrefix: json['ManifestEndpointPrefix'] as String?,
mpdLocation: json['MpdLocation'] as String?,
originManifestType:
(json['OriginManifestType'] as String?)?.toOriginManifestType(),
);
}