toMpdCaptionContainerType method

MpdCaptionContainerType toMpdCaptionContainerType()

Implementation

MpdCaptionContainerType toMpdCaptionContainerType() {
  switch (this) {
    case 'RAW':
      return MpdCaptionContainerType.raw;
    case 'FRAGMENTED_MP4':
      return MpdCaptionContainerType.fragmentedMp4;
  }
  throw Exception('$this is not known in enum MpdCaptionContainerType');
}