toDashIsoMpdProfile method
Implementation
DashIsoMpdProfile toDashIsoMpdProfile() {
switch (this) {
case 'MAIN_PROFILE':
return DashIsoMpdProfile.mainProfile;
case 'ON_DEMAND_PROFILE':
return DashIsoMpdProfile.onDemandProfile;
}
throw Exception('$this is not known in enum DashIsoMpdProfile');
}