toSmoothGroupSparseTrackType method

SmoothGroupSparseTrackType toSmoothGroupSparseTrackType()

Implementation

SmoothGroupSparseTrackType toSmoothGroupSparseTrackType() {
  switch (this) {
    case 'NONE':
      return SmoothGroupSparseTrackType.none;
    case 'SCTE_35':
      return SmoothGroupSparseTrackType.scte_35;
    case 'SCTE_35_WITHOUT_SEGMENTATION':
      return SmoothGroupSparseTrackType.scte_35WithoutSegmentation;
  }
  throw Exception('$this is not known in enum SmoothGroupSparseTrackType');
}