toM2tsSegmentationStyle method

M2tsSegmentationStyle toM2tsSegmentationStyle()

Implementation

M2tsSegmentationStyle toM2tsSegmentationStyle() {
  switch (this) {
    case 'MAINTAIN_CADENCE':
      return M2tsSegmentationStyle.maintainCadence;
    case 'RESET_CADENCE':
      return M2tsSegmentationStyle.resetCadence;
  }
  throw Exception('$this is not known in enum M2tsSegmentationStyle');
}