toCmafMpdProfile method

CmafMpdProfile toCmafMpdProfile()

Implementation

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