toInputTimecodeSource method
Implementation
InputTimecodeSource toInputTimecodeSource() {
switch (this) {
case 'EMBEDDED':
return InputTimecodeSource.embedded;
case 'ZEROBASED':
return InputTimecodeSource.zerobased;
case 'SPECIFIEDSTART':
return InputTimecodeSource.specifiedstart;
}
throw Exception('$this is not known in enum InputTimecodeSource');
}