DashConfiguration.fromJson constructor

DashConfiguration.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}