toMpeg2TimecodeInsertionBehavior method
Implementation
Mpeg2TimecodeInsertionBehavior toMpeg2TimecodeInsertionBehavior() {
switch (this) {
case 'DISABLED':
return Mpeg2TimecodeInsertionBehavior.disabled;
case 'GOP_TIMECODE':
return Mpeg2TimecodeInsertionBehavior.gopTimecode;
}
throw Exception(
'$this is not known in enum Mpeg2TimecodeInsertionBehavior');
}